创建扩展/自定义控件的方法
例如,要创建自定义TextBox控件,
新建一普通类,类名如MyTextBox,在其后添加:TextBox表示继承于TextBox,如
public class MyTextBox:TextBox
{
}
生成后,此类自动成为自定义控件,并出现在工具栏中
2、添加自定义事件
在类的构造函数中,声明事件委托:
public MyTextBox()
{
this.Leave += new EventHandler(this.UCControl_Leave);
this.KeyUp += new KeyEventHandler(this.UCKeyUp);
}