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

📄 notifywindoweventargs.cs

📁 破解的飞信源代码
💻 CS
字号:
namespace Imps.Client.Pc.BizControls.NotifyWindows
{
    using System;

    public class NotifyWindowEventArgs : EventArgs
    {
        private INotifyWindowElement element;
        private Imps.Client.Pc.BizControls.NotifyWindows.NotifyWindow notifyWindow;

        public NotifyWindowEventArgs(Imps.Client.Pc.BizControls.NotifyWindows.NotifyWindow notifyWindow, INotifyWindowElement element)
        {
            this.notifyWindow = notifyWindow;
            this.element = element;
        }

        public INotifyWindowElement Element
        {
            get
            {
                return this.element;
            }
            set
            {
                this.element = value;
            }
        }

        public Imps.Client.Pc.BizControls.NotifyWindows.NotifyWindow NotifyWindow
        {
            get
            {
                return this.notifyWindow;
            }
            set
            {
                this.notifyWindow = value;
            }
        }
    }
}

⌨️ 快捷键说明

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