Méthode | Description | |
---|---|---|
AddButton ( this dialog, string caption, System.Action action ) : void |
Adds a button to the MessageDialog with given caption and action.
|
|
ShowIfPossibleAsync ( this dialog ) : Task |
Begins an asynchronous operation showing a dialog. If another dialog is already shown using ShowQueuedAsync or ShowIfPossibleAsync method - it will wait return immediately and the new dialog won't be displayed.
|
|
ShowQueuedAsync ( this dialog ) : Task |
Begins an asynchronous operation showing a dialog. If another dialog is already shown using ShowQueuedAsync or ShowIfPossibleAsync method - it will wait for that previous dialog to be dismissed before showing the new one.
|
|
ShowTwoOptionsDialog ( string text, string leftButtonText, string rightButtonText, System.Action leftButtonAction, System.Action rightButtonAction ) : IAsyncOperation |
Shows a dialog with two options to choose from
|
public static AddButton ( this dialog, string caption, System.Action action ) : void | ||
dialog | this | |
caption | string | |
action | System.Action | |
Résultat | void |
public static ShowIfPossibleAsync ( this dialog ) : Task |
||
dialog | this | The dialog. |
Résultat | Task |
public static ShowQueuedAsync ( this dialog ) : Task |
||
dialog | this | The dialog. |
Résultat | Task |
public static ShowTwoOptionsDialog ( string text, string leftButtonText, string rightButtonText, System.Action leftButtonAction, System.Action rightButtonAction ) : IAsyncOperation |
||
text | string | |
leftButtonText | string | |
rightButtonText | string | |
leftButtonAction | System.Action | |
rightButtonAction | System.Action | |
Résultat | IAsyncOperation |