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
dialogServiceIWindowDialogServiceThe IWindowDialogService instance.
viewNamestringThe name of the view to be shown.
parameterIBaseDialogParameterThe 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
dialogServiceIWindowDialogServiceThe IWindowDialogService instance.
viewNamestringThe name of the view to be shown.
parameterIBaseDialogParameterThe dialog parameter.
callbackAction<IDialogResult>The callback action to be executed after the view is closed.