C# Class Tsukikage.Windows.Messaging.MessageWindow

Inheritance: System.Windows.Forms.NativeWindow, IDisposable
Afficher le fichier Open project: ttsuki/ttsuki Class Usage Examples

Méthodes publiques

Méthode Description
Dispose ( ) : void

Close window by posting WM_CLOSE and release all resouces. WM_CLOSEを送ってウィンドウを閉じ、すべてのリソースを解放する。

MessageWindow ( ) : System

Create new message window thread. 新しいメッセージウィンドウを作る

PostMessage ( int msg, IntPtr wParam, IntPtr lParam ) : void

Post message to the window. ウィンドウにメッセージを送る

Méthodes protégées

Méthode Description
WndProc ( Message &m ) : void

Private Methods

Méthode Description
PostMessage ( IntPtr hWnd, int Msg, IntPtr wParam, IntPtr lParam ) : bool

Method Details

Dispose() public méthode

Close window by posting WM_CLOSE and release all resouces. WM_CLOSEを送ってウィンドウを閉じ、すべてのリソースを解放する。
public Dispose ( ) : void
Résultat void

MessageWindow() public méthode

Create new message window thread. 新しいメッセージウィンドウを作る
public MessageWindow ( ) : System
Résultat System

PostMessage() public méthode

Post message to the window. ウィンドウにメッセージを送る
public PostMessage ( int msg, IntPtr wParam, IntPtr lParam ) : void
msg int
wParam System.IntPtr
lParam System.IntPtr
Résultat void

WndProc() protected méthode

protected WndProc ( Message &m ) : void
m System.Windows.Forms.Message
Résultat void