Skip to main content

ThemedMessageBox.Show(Window, String, String, MessageBoxButton, Nullable<MessageBoxResult>, ImageSource, MessageBoxOptions, WindowStartupLocation, WindowTitleAlignment, Nullable<Boolean>) Method

Displays a ThemedMessageBox window. A result returned when the window is closed.

Namespace: DevExpress.Xpf.Core

Assembly: DevExpress.Xpf.Core.v23.2.dll

NuGet Package: DevExpress.Wpf.Core

Declaration

public static MessageBoxResult Show(
    Window owner = null,
    string title = null,
    string text = null,
    MessageBoxButton messageBoxButtons = MessageBoxButton.OKCancel,
    MessageBoxResult? defaultButton = null,
    ImageSource image = null,
    MessageBoxOptions options = MessageBoxOptions.None,
    WindowStartupLocation windowStartupLocation = WindowStartupLocation.CenterOwner,
    WindowTitleAlignment titleAlignment = WindowTitleAlignment.Left,
    bool? showActivated = null
)

Optional Parameters

Name Type Default Description
owner Window null

The window that owns the ThemedMessageBox.

title String null

The window’s header text.

text String null

The window’s message text.

messageBoxButtons MessageBoxButton OKCancel

A set of buttons displayed in the ThemedMessageBox.

defaultButton Nullable<MessageBoxResult> null

The ThemedMessageBox‘s default button. This button is focused when the ThemedMessageBox is shown.

image ImageSource null

An image displayed in the ThemedMessageBox.

options MessageBoxOptions None

The ThemedMessageBox‘s display and association options.

windowStartupLocation WindowStartupLocation CenterOwner

The ThemedMessageBox‘s position when it starts.

titleAlignment WindowTitleAlignment Left

The header text alignment.

showActivated Nullable<Boolean> null

true to activate the window when it is first shown; false to deactivate the window when it is first shown; null to use the framework’s ShowActivated value.

Returns

Type Description
MessageBoxResult

The ThemedMessageBox result value.

See Also