wndlesscontrols.cs
来自「破解的飞信源代码」· CS 代码 · 共 33 行
CS
33 行
namespace Imps.Client.Pc.BizControls
{
using System;
using System.Collections;
using System.Reflection;
using System.Runtime.CompilerServices;
public class WndlessControls : CollectionBase
{
public event ControlHandler ControlAdded;
public int Add(XFormWndlessControl control)
{
int index = base.List.Add(control);
control.Handle = index;
if (this.ControlAdded != null)
{
this.ControlAdded(index);
}
return index;
}
public XFormWndlessControl this[int index]
{
get
{
return (base.List[index] as XFormWndlessControl);
}
}
}
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?