DialogTurnStatus 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.
Enums the possible states of the dialogs on the stack.
public enum DialogTurnStatus
type DialogTurnStatus =
Public Enum DialogTurnStatus
- Inheritance
-
DialogTurnStatus
Fields
Name | Value | Description |
---|---|---|
Empty | 0 | Indicates that there is currently nothing on the dialog stack. |
Waiting | 1 | Indicates that the dialog on top is waiting for a response from the user. |
Complete | 2 | Indicates that a dialog completed successfully, the result is available, and no child dialogs to the current context are on the dialog stack. |
Cancelled | 3 | Indicates that the dialog was canceled, and no child dialogs to the current context are on the dialog stack. |
CompleteAndWait | 4 | Current dialog completed successfully, but turn should end. |