notifywindowcontent.cs
来自「破解的飞信源代码」· CS 代码 · 共 51 行
CS
51 行
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 + =
减小字号Ctrl + -
显示快捷键?