我试图将基本形状绘制到表单上的面板中。到目前为止没有任何事情发生,我不知道为什么。在我的表单的构造函数中调用此方法。
private void doGraphics()
{
Pen p = new Pen(Color.Black);//draws wire frame Shapes
SolidBrush sb = new SolidBrush(Color.Yellow);//draws filled Shapes
Graphics g = panel1.CreateGraphics();
Point[] pointArray = { new Point(100, 20), new Point(100, 0), new Point(120, 0), new Point(120, 20) };
g.FillPolygon(sb, pointArray);
g.DrawPolygon(p, pointArray);
}
任何建议都会很棒!
答案 0 :(得分:2)
您需要注册到面板的Paint
事件并使用参数附带的图形对象:
在构造函数中:
panel1.Paint += new PaintEventHandler(panel1_Paint);
处理程序本身:
void panel1_Paint(object sender, PaintEventArgs e) {
{
Pen p = new Pen(Color.Black);//draws wire frame Shapes
SolidBrush sb = new SolidBrush(Color.Yellow);//draws filled Shapes
Graphics g = e.Graphics; // From Arguments
Point[] pointArray = { new Point(100, 20), new Point(100, 0), new Point(120, 0), new Point(120, 20) };
g.FillPolygon(sb, pointArray);
g.DrawPolygon(p, pointArray);
}
答案 1 :(得分:0)
在构造函数中调用此方法时,不能假定子控件和/或Graphic对象可用。使用表单的OnPaint方法或创建自定义控件并覆盖那里的OnPaint。