ShutdownMode Enum
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Indicates which condition should cause a Windows Forms application to shut down.
public enum class ShutdownMode
public enum ShutdownMode
type ShutdownMode =
Public Enum ShutdownMode
- Inheritance
Fields
Name | Value | Description |
---|---|---|
AfterMainFormCloses | 0 | Shut down when the main form closes. |
AfterAllFormsClose | 1 | Shut down only after the last form closes. |
Remarks
You can set the shutdown mode for an application through the ShutdownStyle property. By default, the OnMainFormClosed method checks the value of the ShutdownStyle property to determine if the application should shut down.
Applies to
See also
Collaborate with us on GitHub
The source for this content can be found on GitHub, where you can also create and review issues and pull requests. For more information, see our contributor guide.