📄 notifywindowcontent.cs
字号:
namespace Imps.Client.Pc.BizControls.NotifyWindows
{
using System;
using System.Collections.Generic;
using System.Drawing;
public class NotifyWindowContent
{
protected System.Drawing.Rectangle _rect;
protected Image backgroundImage;
protected List<INotifyWindowElement> elements = new List<INotifyWindowElement>();
public Image BackgroundImage
{
get
{
return this.backgroundImage;
}
set
{
this.backgroundImage = value;
}
}
public List<INotifyWindowElement> Elements
{
get
{
return this.elements;
}
set
{
this.elements = value;
}
}
public System.Drawing.Rectangle Rectangle
{
get
{
return this._rect;
}
set
{
this._rect = value;
}
}
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -