C# 클래스 ModernWPF.Messages.ChooseFolderMessage

Message for choosing a folder.
상속: MessageBase
파일 보기 프로젝트 열기: soukoku/ModernWPF 1 사용 예제들

공개 메소드들

메소드 설명
ChooseFolderMessage ( Action callback ) : System

Initializes a new instance of the ChooseFolderMessage class.

ChooseFolderMessage ( object sender, Action callback ) : System

Initializes a new instance of the ChooseFolderMessage class.

ChooseFolderMessage ( object sender, object target, Action callback ) : System

Initializes a new instance of the ChooseFolderMessage class.

DoCallback ( string folder ) : void

Does the callback to notify sender of selected folder.

HandleWithPlatform ( Window owner ) : void

Handles the ChooseFolderMessage on a window by showing a folder dialog based on the message options.

메소드 상세

ChooseFolderMessage() 공개 메소드

Initializes a new instance of the ChooseFolderMessage class.
public ChooseFolderMessage ( Action callback ) : System
callback Action The callback when a folder is chosen.
리턴 System

ChooseFolderMessage() 공개 메소드

Initializes a new instance of the ChooseFolderMessage class.
public ChooseFolderMessage ( object sender, Action callback ) : System
sender object The message's original sender.
callback Action The callback when a folder is chosen.
리턴 System

ChooseFolderMessage() 공개 메소드

Initializes a new instance of the ChooseFolderMessage class.
public ChooseFolderMessage ( object sender, object target, Action callback ) : System
sender object The message's original sender.
target object The message's intended target.
callback Action The callback when a folder is chosen.
리턴 System

DoCallback() 공개 메소드

Does the callback to notify sender of selected folder.
public DoCallback ( string folder ) : void
folder string The folder.
리턴 void

HandleWithPlatform() 공개 메소드

Handles the ChooseFolderMessage on a window by showing a folder dialog based on the message options.
public HandleWithPlatform ( Window owner ) : void
owner System.Windows.Window The owner.
리턴 void