标签:构造函数 and key 类的构造函数 += 创建 工具栏 nbsp bsp
例如,要创建自定义TextBox控件,
新建一普通类,类名如MyTextBox,在其后添加:TextBox表示继承于TextBox,如
public class MyTextBox:TextBox
{
}
生成后,此类自动成为自定义控件,并出现在工具栏中
2、添加自定义事件
在类的构造函数中,声明事件委托:
public MyTextBox()
{
this.Leave += new EventHandler(this.UCControl_Leave);
this.KeyUp += new KeyEventHandler(this.UCKeyUp);
}
标签:构造函数 and key 类的构造函数 += 创建 工具栏 nbsp bsp
原文地址:http://www.cnblogs.com/mol1995/p/7636153.html