MDI儿童形式绘画问题

时间:2012-06-04 05:12:34

标签: c# forms paint

  Do anyone have any comments about this issue.

enter image description here

这是在MDI Client中显示的MDI子窗体。当我将窗体部分重叠到另一个窗体上时,它没有完全重新绘制。这是一个绘画问题。任何人都有任何想法。

提前致谢 苏尼

1 个答案:

答案 0 :(得分:1)

试试这个:

 Form2 f2;    

private void button1_Click(object sender, EventArgs e)
{
    if (f2 == null) {
       f2 = new Form2();
       f2.MdiParent = this;
       f2.FormClosed += delegate { f2 = null; };
       f2.Show();
    }
    else {
       f2.Activate();
    }
}