C# Класс ModernWPF.Messages.MessageBoxMessage

Message for showing typical modal dialog.
Наследование: MessageBase
Показать файл Открыть проект

Открытые методы

Метод Описание
HandleWithModern ( Window owner ) : void

Handles a basic MessageBoxMessage on a window by showing a ModernMessageBox and invokes the callback.

HandleWithPlatform ( Window owner ) : void

Handles a basic MessageBoxMessage on a window by showing built-in MessageBox and invokes the callback.

MessageBoxMessage ( object sender, object target, string content, Action callback ) : System

Initializes a new instance of the MessageBoxMessage class.

MessageBoxMessage ( object sender, string content, Action callback ) : System

Initializes a new instance of the MessageBoxMessage class.

MessageBoxMessage ( string content, Action callback ) : System

Initializes a new instance of the MessageBoxMessage class.

Описание методов

HandleWithModern() публичный Метод

Handles a basic MessageBoxMessage on a window by showing a ModernMessageBox and invokes the callback.
public HandleWithModern ( Window owner ) : void
owner System.Windows.Window The owner.
Результат void

HandleWithPlatform() публичный Метод

Handles a basic MessageBoxMessage on a window by showing built-in MessageBox and invokes the callback.
public HandleWithPlatform ( Window owner ) : void
owner System.Windows.Window The owner.
Результат void

MessageBoxMessage() публичный Метод

Initializes a new instance of the MessageBoxMessage class.
public MessageBoxMessage ( object sender, object target, string content, Action callback ) : System
sender object The message's original sender.
target object The message's intended target.
content string The content.
callback Action
Результат System

MessageBoxMessage() публичный Метод

Initializes a new instance of the MessageBoxMessage class.
public MessageBoxMessage ( object sender, string content, Action callback ) : System
sender object The message's original sender.
content string The content.
callback Action
Результат System

MessageBoxMessage() публичный Метод

Initializes a new instance of the MessageBoxMessage class.
public MessageBoxMessage ( string content, Action callback ) : System
content string The content.
callback Action
Результат System