![]() |
Paradox Game Engine
v1.0.0 beta06
|
Classes | |
| struct | FileDialogFilter |
| A structure representing a filter for a file dialog. More... | |
| interface | IDialogService |
| An interface to invoke dialogs from commands implemented in view models More... | |
| interface | IDispatcherService |
| interface | IFileModalDialog |
| An interface representing modal file dialogs. More... | |
| interface | IFileOpenModalDialog |
| An interface representing a modal file open dialog. More... | |
| interface | IFileSaveModalDialog |
| An interface representing a modal file save dialog. More... | |
| interface | IFolderOpenModalDialog |
| An interface representing a modal folder selection dialog. More... | |
| interface | IModalDialog |
| An interface representing a modal dialog. More... | |
Enumerations | |
| enum | DialogResult { DialogResult.None = 0, DialogResult.Ok = 1, DialogResult.Cancel = 2 } |
| An enum representing the result of a dialog invocation. More... | |
| enum | MessageBoxButton { MessageBoxButton.OK = 0, MessageBoxButton.OKCancel = 1, MessageBoxButton.YesNoCancel = 3, MessageBoxButton.YesNo = 4 } |
| An enum representing the buttons to display in a message box. More... | |
| enum | MessageBoxImage { MessageBoxImage.None = 0, MessageBoxImage.Error = 16, MessageBoxImage.Question = 32, MessageBoxImage.Warning = 48, MessageBoxImage.Information = 64 } |
| An enum representing the image to display in a message box. More... | |
| enum | MessageBoxResult { MessageBoxResult.None = 0, MessageBoxResult.OK = 1, MessageBoxResult.Cancel = 2, MessageBoxResult.Yes = 6, MessageBoxResult.No = 7 } |
| An enum representing the button pressed by the user to close a message box. More... | |
An enum representing the result of a dialog invocation.
| Enumerator | |
|---|---|
| None |
The dialog has not been invoked or closed yet. |
| Ok |
The dialog has been closed by a validation from the user. |
| Cancel |
The dialog has been closed by a cancellation from the user. |
Definition at line 9 of file DialogResult.cs.
An enum representing the buttons to display in a message box.
Definition at line 9 of file MessageBoxButton.cs.
An enum representing the image to display in a message box.
Definition at line 9 of file MessageBoxImage.cs.
An enum representing the button pressed by the user to close a message box.
Definition at line 9 of file MessageBoxResult.cs.