⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 exdepartment.cs

📁 kuiMsg是一款用.net C# 开发的即时消息开源软件,适合.net即时消息软件开发者用。 主要功能: 支持文件传输(p2p); 支持GIF动画表情( 彻底消除闪屏 :) );
💻 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 + -