Class IWindowDialogServiceExtensions
Extension methods for the IWindowDialogService interface.
public static class IWindowDialogServiceExtensions
- Inheritance
-
objectIWindowDialogServiceExtensions
Methods
- Ask(IWindowDialogService, string, string)
Asks a question with the specified title and returns a boolean value indicating the user's response.
- Show(IWindowDialogService, string, IBaseDialogParameter)
Shows a view with the specified view name and dialog parameter.
- Show(IWindowDialogService, string, IBaseDialogParameter, Action<IDialogResult>)
Shows a view with the specified view name, dialog parameter, and callback action.
- ShowDialog(IWindowDialogService, string, IBaseDialogParameter)
Shows a dialog with the specified view name and dialog parameter.
- ShowDialog(IWindowDialogService, string, IBaseDialogParameter, Action<IDialogResult>)
Shows a dialog with the specified view name, dialog parameter, and callback action.
- ShowDialog<T>(IWindowDialogService, IBaseDialogParameter)
Shows a dialog of type
T
with the specified dialog parameter.
- ShowDialog<T>(IWindowDialogService, IBaseDialogParameter, Action<IDialogResult>)
Shows a dialog of type
T
with the specified dialog parameter and callback action.