📄 exdepartment.cs
字号:
using System;
using System.Collections.Generic;
using System.Text;
using System.Windows.Forms;
namespace LanMsg
{
class exDepartment :IMLibrary.Department
{
public exDepartment()
{
}
/// <summary>
/// 部门在树图中的节点
/// </summary>
private exNode node = new exNode();
public exNode Node
{
get { return node; }
set {
node = value;
}
}
private void TreeView_NodeMouseClick(object sender,TreeNodeMouseClickEventArgs e)
{
}
/// <summary>
/// 部门的在线用户数
/// </summary>
private UInt16 _onLineUserCount =0;
public UInt16 onLineUserCount
{
get { return _onLineUserCount; }
set
{
_onLineUserCount = value;
}
}
/// <summary>
/// 部门的用户数
/// </summary>
private UInt16 _UserCount = 0;
public UInt16 UserCount
{
get { return _UserCount; }
set
{
_UserCount = value;
}
}
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -