winForm打开及关闭处理事件一览

 

Windows Form 中事件的顺序

        对於需要轮流处理 Windows Form 应用程式中每个事件的开发人员来说,事件的引发顺序就十分重要。当某个状况呼叫严密的事件处理,如重新绘制表单的部分时,有必要了解事件在执行阶段时的明确引发顺序。本说明主题提供了有关事件顺序的详细资讯,这些事件是指在应用程式和控制项的存留期 (Lifetime) 几个重要阶段中的事件。如需滑鼠输入事件之顺序的详细资讯,请参阅 Windows Form 中的滑鼠事件。如需 Windows Form 事件的概观,请参阅事件概观 (Windows Form)。如需事件处理常式之构成的详细资讯,请参阅事件处理常式概观 (Windows Form)。

        应用程式启动与关闭事件 Form 和 Control 类别会公开一组和应用程式启动与关闭有关的事件。当 Windows Form 应用程式启动时,会以下列顺序引发主要表单的启动事件:

         System.Windows.Forms.Control.HandleCreated
        System.Windows.Forms.Control.BindingContextChanged
        System.Windows.Forms.Form.Load
        System.Windows.Forms.Control.VisibleChanged
        System.Windows.Forms.Form.Activated
        System.Windows.Forms.Form.Shown

 

        当应用程式关闭时,会以下列顺序引发主要表单的关闭事件:

         System.Windows.Forms.Form.Closing
        System.Windows.Forms.Form.FormClosing
        System.Windows.Forms.Form.Closed
        System.Windows.Forms.Form.FormClosed
        System.Windows.Forms.Form.Deactivate

 

        Application 类别的 ApplicationExit 事件会在主要表单的关闭事件之後引发。

 

你可能感兴趣的:(windows,application,资讯,WinForm)