將您的應用程序的主窗口更改爲子窗口有許多副作用。由於MdiParent分配,Winforms被迫破壞窗口。這足以讓您的Main()方法中的Application.Run()調用完成,這就是您的應用程序的結束。你必須改變:
[STAThread]
static void Main() {
Application.EnableVisualStyles();
Application.SetCompatibleTextRenderingDefault(false);
var main = new Form1();
main.Show();
Application.Run();
}
而且你必須確保你現在終止時,MDI父被關閉:
private void Form1_Deactivate(object sender, EventArgs e) {
this.TopMost = false;
var newMdiParent = new mdfi();
newMdiParent.IsMdiContainer = true;
this.MdiParent = newMdiParent;
newMdiParent.FormClosed += (s, ea) => Application.Exit();
newMdiParent.Show();
this.Deactivate -= Form1_Deactivate;
}
private void Form1_FormClosed(object sender, FormClosedEventArgs e) {
if (this.MdiParent == null) Application.Exit();
}
你爲什麼想停用事件過程中添加的形式()! – User999999
我正在製作一個圖片查看器,看起來像Google Picasa,所以當用戶點擊屏幕上的任何位置時,它會製作一個mdi表單並且圖像適合該圖像。 –
MDI表單位於父表單內。我不確定這是你想要的。當這個代碼被調用時,你正在按[X]按鈕關閉form1嗎? –