Method Show
Show(IWindowDialogService, string, IBaseDialogParameter)
Shows a view with the specified view name and dialog parameter.
public static void Show(this IWindowDialogService dialogService, string viewName, IBaseDialogParameter parameter)
Parameters
dialogService
IWindowDialogServiceThe IWindowDialogService instance.
viewName
stringThe name of the view to be shown.
parameter
IBaseDialogParameterThe dialog parameter.
Show(IWindowDialogService, string, IBaseDialogParameter, Action<IDialogResult>)
Shows a view with the specified view name, dialog parameter, and callback action.
public static void Show(this IWindowDialogService dialogService, string viewName, IBaseDialogParameter parameter, Action<IDialogResult> callback)
Parameters
dialogService
IWindowDialogServiceThe IWindowDialogService instance.
viewName
stringThe name of the view to be shown.
parameter
IBaseDialogParameterThe dialog parameter.
callback
Action<IDialogResult>The callback action to be executed after the view is closed.