Windows Forms 程式設計
Windows Form 中事件的順序
對於需要輪流處理 Windows Form 應用程式中每個事件的開發人員來說事件的引發順序就十分重要當某個狀況呼叫嚴密的事件處理如重新繪製表單的部分時有必要瞭解事件在執行階段時的明確引發順序本說明主題提供了有關事件順序的詳細資訊這些事件是指在應用程式和控制項的存留期 (Lifetime) 幾個重要階段中的事件如需滑鼠輸入事件之順序的詳細資訊請參閱 Windows Form 中的滑鼠事件如需 Windows Form 事件的概觀請參閱事件概觀 (Windows Form)如需事件處理常式之構成的詳細資訊請參閱事件處理常式概觀 (Windows Form)
應用程式啟動與關閉事件 Form 和 Control 類別會公開一組和應用程式啟動與關閉有關的事件當 Windows Form 應用程式啟動時會以下列順序引發主要表單的啟動事件
SystemWindowsFormsControlHandleCreated
SystemWindowsFormsControlBindingContextChanged
SystemWindowsFormsFormLoad
SystemWindowsFormsControlVisibleChanged
SystemWindowsFormsFormActivated
SystemWindowsFormsFormShown
當應用程式關閉時會以下列順序引發主要表單的關閉事件
SystemWindowsFormsFormClosing
SystemWindowsFormsFormFormClosing
SystemWindowsFormsFormClosed
SystemWindowsFormsFormFormClosed
SystemWindowsFormsFormDeactivate
Application 類別的 ApplicationExit 事件會在主要表單的關閉事件之後引發
From:http://tw.wingwit.com/Article/program/net/201311/12748.html