DialogResult Members
Include Protected Members
Include Inherited Members
Dialog result values. These match Windows buttons IDs (IDOK, IDCANCEL, etc.) In addition we define the result for failure to display the dialog. WPF dialogs return OK/Cancel for the boolean value result of ShowDialog() call, and Fail if the dialog does not have return value yet.
The DialogResult type exposes the following members.
Fields
Name | Description | |
---|---|---|
Abort | ||
Cancel | ||
Close | ||
Continue | ||
Fail | ||
Help | ||
Ignore | ||
No | ||
OK | ||
Retry | ||
TryAgain | ||
Yes |
Top