Table of Contents

Interface IWindowDialogService

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

Represents a service for displaying window dialogs.

public interface IWindowDialogService : IDialogService
Extension Methods

Methods

Ask(string)

Asks a question and returns a boolean value indicating the user's response.

Ask(string, string)

Asks a question with the specified title and returns a boolean value indicating the user's response.

Ask(string, string, out string)

Asks a question with the specified title and returns a boolean value indicating the user's response.

Ask(string, string, out string, bool)

Asks a question with the specified title and returns a boolean value indicating the user's response.

AskWithCombo(string, string, out object, IList)

Asks a question with the specified title and returns a boolean value indicating the user's response.

CloseDialog(string)

Closes the dialog associated with the given key.

IsWindowOpen(string)

Checks if a window dialog with the given key is open.

OpenActiveDirectoryPickerDialog(DirectoryObjectDialogOptions, params string[])

Opens a directory picker dialog and returns a list of selected directory security identifiers.

OpenFileDialog(string)

Opens a file dialog for selecting a file to open.

OpenFileDialogMultiSelect(string)

Opens a file dialog for selecting multiple files to open.

OpenFolderBrowserDialog(string, SpecialFolder)

Opens a folder browser dialog for selecting a folder.

PrintVisual(Visual)

Prints the specified visual.

SaveFileDialog(string, string)

Opens a file dialog for selecting a file to save.

ShowError(string)

Shows an error dialog with the specified error.

ShowError(string, string)

Shows an error dialog with the specified error and title.

ShowInformation(string, bool)

Shows an information dialog with the specified information.

ShowInformation(string, string, bool)

Shows an information dialog with the specified information and title.

ShowWarning(string)

Shows a warning dialog with the specified warning.

ShowWarning(string, string)

Shows a warning dialog with the specified warning and title.