自定义控件添加到其父级。在父窗体的form_lord()
. 自定义控件绘制事件不起作用(自定义控件 onpaint 事件处的断点甚至无法触发)
代码是这样的(我不知道为什么):
自定义控件:
public class Box : Control
{
public Rectangle rect;
public Box(Rectangle rect)
{
this.rect = rect;
}
protected override void OnPaint(PaintEventArgs e)
{
e.Graphics.FillRectangle(new SolidBrush(Color.Chocolate), rect);
base.OnPaint(e);
}
}
public partial class Form1 : Form
{
private void Form1_Load(object sender, EventArgs e)
{
Box box = new Box( new Rectangle(100, 100, 100, 130) );
this.Controls.add(box);
}
}