📄 notifywindoweventargs.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 + -