Paradox Game Engine  v1.0.0 beta06
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Events Macros Pages
Package SiliconStudio.Presentation.Services

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...
 

Enumeration Type Documentation

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.

Enumerator
OK 

Display a single OK button.

OKCancel 

Display a OK button and a Cancel button.

YesNoCancel 

Display a Yes button, a No button and a Cancel button.

YesNo 

Display a Yes button and a No button.

Definition at line 9 of file MessageBoxButton.cs.

An enum representing the image to display in a message box.

Enumerator
None 

No image will be displayed in the message box.

Error 

An image representing an error will be displayed in the message box.

Question 

An image representing a question will be displayed in the message box.

Warning 

An image representing a warning will be displayed in the message box.

Information 

An image representing an information will be displayed in the message box.

Definition at line 9 of file MessageBoxImage.cs.

An enum representing the button pressed by the user to close a message box.

Enumerator
None 

The message box has not been closed yet.

OK 

The user pressed the OK button.

Cancel 

The user pressed the Cancel button.

Yes 

The user pressed the Yes button.

No 

The user pressed the No button.

Definition at line 9 of file MessageBoxResult.cs.