2014-02-07 127 views
2

我有兩種形式,名爲mdfiform1。我想通過form1的代碼使mdfi形成MdiContainer。我嘗試了以下但運行時關閉的程序:Mdi容器窗體不能打開

private void Form1_Deactivate(object sender, EventArgs e) 
{ 
    this.TopMost = false; 
    Mdfi newMDIChild = new Mdfi(); 
    newMDIChild.IsMdiContainer = true; 
    this.MdiParent = newMDIChild; 
    newMDIChild.Show(); 
} 
+1

你爲什麼想停用事件過程中添加的形式()! – User999999

+0

我正在製作一個圖片查看器,看起來像Google Picasa,所以當用戶點擊屏幕上的任何位置時,它會製作一個mdi表單並且圖像適合該圖像。 –

+0

MDI表單位於父表單內。我不確定這是你想要的。當這個代碼被調用時,你正在按[X]按鈕關閉form1嗎? –

回答

2

將您的應用程序的主窗口更改爲子窗口有許多副作用。由於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(); 
    } 
相關問題