Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
Do anyone have any comments about this issue.
これは、MDIクライアント内に表示されるMDI子フォームです。フォームを別のフォームに部分的にオーバーラップすると、完全に再描画されません。これは絵なのだろうか。
よろしくお願いしますSunil
これを試して :
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(); } }