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 事件会在主要表单的关闭事件之后引发 |