继承Button的控件为什么不会执行Onpaint事件
要做一个控件继承于Button 类,在Onpaint中设了断点,发现程序没有进入该函数,要是把控件继承于Control类,就会进入OnPaint类,这是为什么呢?
public partial class CustomControl1 : Button { public CustomControl1() { InitializeComponent(); } protected override void OnPaint(PaintEventArgs pe) { base.OnPaint(pe); } }