ShutdownMode Enum

Definition

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
ShutdownMode

Fields

AfterAllFormsClose 1

Shut down only after the last form closes.

AfterMainFormCloses 0

Shut down when the main 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