📄 fronttemplate.cs
字号:
namespace PowerEasy.Components
{
using System;
using System.Xml.Serialization;
[Serializable]
public class FrontTemplate
{
private bool m_IsNull;
private string m_Key;
private string m_Value;
public FrontTemplate()
{
}
public FrontTemplate(bool value)
{
this.m_IsNull = value;
}
public bool IsNull
{
get
{
return this.m_IsNull;
}
}
[XmlAttribute("Key")]
public string Key
{
get
{
return this.m_Key;
}
set
{
this.m_Key = value;
}
}
[XmlAttribute("Value")]
public string Value
{
get
{
return this.m_Value;
}
set
{
this.m_Value = value;
}
}
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -