C# 클래스 ModernWPF.Messages.MessageBoxMessage

Message for showing typical modal dialog.
상속: MessageBase
파일 보기 프로젝트 열기: soukoku/ModernWPF

공개 메소드들

메소드 설명
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