Table of Contents

Method Show

Namespace
Innova.Prism.Library.Services
Assembly
Innova.Prism.Library.dll

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 IWindowDialogService

The IWindowDialogService instance.

viewName string

The name of the view to be shown.

parameter IBaseDialogParameter

The 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 IWindowDialogService

The IWindowDialogService instance.

viewName string

The name of the view to be shown.

parameter IBaseDialogParameter

The dialog parameter.

callback Action<IDialogResult>

The callback action to be executed after the view is closed.