?? taskbaritem.cs
字號:
using System;
namespace _36Hang.Web.UI.WebControls
{
public class TaskBarItem
{
private string _ID;
private string _Icon;
private string _Name;
private bool _Display = false;
public TaskBarItem() {}
public string ID
{
get { return _ID; }
set { _ID = value; }
}
public string Icon
{
get { return _Icon; }
set { _Icon = value; }
}
public string Name
{
get { return _Name; }
set { _Name = value; }
}
public bool Display
{
get { return _Display; }
set { _Display = value; }
}
}
}
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -