Why does modal-form disappear completely when minimized?
问题 I'm trying to have the owner-form minimize when the modal-form is minimized. But when I minimize the modal-form – it disappears completely. (- I can click on the owner-form.) How do I solve this? I have: public partial class Form1 : Form { Form2 frm2 = new Form2(); public Form1() { InitializeComponent(); frm2.Owner = this; } private void button1_Click(object sender, EventArgs e) { frm2.ShowDialog(); } } And: class Form2 : Form { Form1 frm1; FormWindowState ws = new FormWindowState(); public