Class DialogNavigatorExtensions
Provides extension methods for IDialogNavigatorBase to show message dialogs.
Namespace: Singulink.UI.Navigation
Assembly: Singulink.UI.Navigation.dll
Syntax
public static class DialogNavigatorExtensions
Methods
Name | Description |
---|---|
ShowMessageDialogAsync(IDialogNavigatorBase, MessageDialogOptions) | Shows a message dialog with the specified options and returns a task that completes with the button index that was clicked when the dialog closes. The options allow some additional customization of the dialog, such as configuring the default and cancel buttons. |
ShowMessageDialogAsync(IDialogNavigatorBase, string) | Shows a message dialog with an "OK" button and returns a task that completes when the dialog closes. |
ShowMessageDialogAsync(IDialogNavigatorBase, string, IEnumerable<string>) | Shows a message dialog with the specified button labels and returns a task that completes with the button index that was clicked when the dialog closes. |
ShowMessageDialogAsync(IDialogNavigatorBase, string, string) | Shows a message dialog with an "OK" button and returns a task that completes when the dialog closes. |
ShowMessageDialogAsync(IDialogNavigatorBase, string, string, IEnumerable<string>) | Shows a message dialog with the specified button labels and returns a task that completes with the button index that was clicked when the dialog closes. |