📄 tempnode.cs
字号:
namespace Codematic.UserControls
{
using System;
using System.Windows.Forms;
public class TempNode : TreeNode
{
private string filepath;
private string nodeid;
private string nodetype;
private string parentid;
public TempNode()
{
}
public TempNode(string NodeName)
{
base.Text = NodeName;
}
public string FilePath
{
get
{
return this.filepath;
}
set
{
this.filepath = value;
}
}
public string NodeID
{
get
{
return this.nodeid;
}
set
{
this.nodeid = value;
}
}
public string NodeType
{
get
{
return this.nodetype;
}
set
{
this.nodetype = value;
}
}
public string ParentID
{
get
{
return this.parentid;
}
set
{
this.parentid = value;
}
}
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -