📄 xtreeitem.cs
字号:
namespace PowerEasy.Controls
{
using System;
public class XTreeItem
{
private string m_Action;
private string m_AnchorType;
private string m_ArrModelId;
private string m_ArrModelName;
private string m_ArrPurview;
private string m_Enable;
private string m_Expand;
private string m_Icon;
private string m_NodeId;
private string m_NodeType;
private string m_Src;
private string m_Target;
private string m_Text;
private string m_Title;
public string Action
{
get
{
return this.m_Action;
}
set
{
this.m_Action = value;
}
}
public string AnchorType
{
get
{
return this.m_AnchorType;
}
set
{
this.m_AnchorType = value;
}
}
public string ArrModelId
{
get
{
return this.m_ArrModelId;
}
set
{
this.m_ArrModelId = value;
}
}
public string ArrModelName
{
get
{
return this.m_ArrModelName;
}
set
{
this.m_ArrModelName = value;
}
}
public string ArrPurview
{
get
{
return this.m_ArrPurview;
}
set
{
this.m_ArrPurview = value;
}
}
public string Enable
{
get
{
return this.m_Enable;
}
set
{
this.m_Enable = value;
}
}
public string Expand
{
get
{
return this.m_Expand;
}
set
{
this.m_Expand = value;
}
}
public string Icon
{
get
{
return this.m_Icon;
}
set
{
this.m_Icon = value;
}
}
public string NodeId
{
get
{
return this.m_NodeId;
}
set
{
this.m_NodeId = value;
}
}
public string NodeType
{
get
{
return this.m_NodeType;
}
set
{
this.m_NodeType = value;
}
}
public string Target
{
get
{
return this.m_Target;
}
set
{
this.m_Target = value;
}
}
public string Text
{
get
{
return this.m_Text;
}
set
{
this.m_Text = value;
}
}
public string Title
{
get
{
return this.m_Title;
}
set
{
this.m_Title = value;
}
}
public string XmlSrc
{
get
{
return this.m_Src;
}
set
{
this.m_Src = value;
}
}
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -