buddyselectiontreecheckeventargs.cs

来自「破解的飞信源代码」· CS 代码 · 共 35 行

CS
35
字号
namespace Imps.Client.Pc.BizControls
{
    using System;
    using System.Windows.Forms;

    public class BuddySelectionTreeCheckEventArgs : EventArgs
    {
        private PaintTreeNode _node;
        private System.Windows.Forms.CheckState _state;

        public BuddySelectionTreeCheckEventArgs(PaintTreeNode node, System.Windows.Forms.CheckState state)
        {
            this._node = node;
            this._state = state;
        }

        public System.Windows.Forms.CheckState CheckState
        {
            get
            {
                return this._state;
            }
        }

        public PaintTreeNode Node
        {
            get
            {
                return this._node;
            }
        }
    }
}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?