Interface IDialogNavigatorBase
Represents a navigator that can show dialogs.
Namespace: Singulink.UI.Navigation
Assembly: Singulink.UI.Navigation.dll
Syntax
public interface IDialogNavigatorBase
Methods
Name | Description |
---|---|
ShowDialogAsync<TViewModel>(Func<IDialogNavigator, TViewModel>) | Shows a dialog with the view model created by the specified function and returns a task that contains the view model when the dialog closes. |
ShowDialogAsync<TViewModel>(TViewModel, out IDialogNavigator) | Shows a dialog with the specified view model and returns a task that completes when the dialog closes. |
ShowDialogAsync<TViewModel>(out TViewModel, Func<IDialogNavigator, TViewModel>) | Shows a dialog with the view model created by the specified function and returns a task that completes when the dialog closes. |