将油漆事件称为另一种形式

时间:2014-04-21 18:14:25

标签: c# graphic

我想从另一种形式调用paint事件 这是我的表格1

public void Draw(int a,int b)
    {
        Graphics gr = this.CreateGraphics();
        Pen p = new Pen(Color.Black,2);
        gr.DrawLine(p, new Point(a, b), new Point(b, a));
    }

当我想使用此代码从表单2调用Draw Event时

Form2 f = new Form2();
        f.Draw(20,40);
        f.Show();

但它不起作用 我如何从其他形式调用绘制事件? 谢谢

0 个答案:

没有答案