Click or drag to resize

MessageDialogExShowAsync Method (String, String, MessageBoxImage, CauldronUICommand, CauldronUICommand)

Begins an asynchronous operation showing a dialog.

Namespace:  Cauldron.XAML
Assembly:  Cauldron.Win32.WPF (in Cauldron.Win32.WPF.dll) Version: 3.2.0.1 (3.2.0.1)
Syntax
C#
public Task ShowAsync(
	string title,
	string content,
	MessageBoxImage messageBoxImage,
	CauldronUICommand command1,
	CauldronUICommand command2
)

Parameters

title
Type: SystemString
The title to display on the dialog, if any.
content
Type: SystemString
The message to be displayed to the user.
messageBoxImage
Type: Cauldron.XAMLMessageBoxImage
The icon to show on the dialog
command1
Type: Cauldron.XAMLCauldronUICommand
A command that appear in the command bar of the message dialog. This command makes the dialog actionable.
command2
Type: Cauldron.XAMLCauldronUICommand
A command that appear in the command bar of the message dialog. This command makes the dialog actionable.

Return Value

Type: Task
An object that represents the asynchronous operation.

Implements

IMessageDialogShowAsync(String, String, MessageBoxImage, CauldronUICommand, CauldronUICommand)
See Also