C# Class ZForge.Controls.XPTable.Win32.NativeWindow

Summary description for NativeWindow
Afficher le fichier Open project: zhuangyy/Motion

Méthodes publiques

Méthode Description
AssignHandle ( IntPtr hWnd ) : void

Assigns a handle to this window

DefWndProc ( System &m ) : void

Invokes the default window procedure associated with this window. It is an error to call this method when the Handle property is 0

NativeWindow ( ) : System

Initializes a new instance of the NativeWindow class

ReleaseHandle ( ) : void

Releases the handle associated with this window

Méthodes protégées

Méthode Description
WndProc ( System &msg ) : void

Invokes the default window procedure associated with this window

Private Methods

Méthode Description
CallWindowProc ( IntPtr prevWndFunc, IntPtr hWnd, int iMsg, IntPtr wParam, IntPtr lParam ) : IntPtr
SetWindowLong ( IntPtr hWnd, int nIndex, IntPtr wndFunc ) : IntPtr
SetWindowLong ( IntPtr hWnd, int nIndex, WndProcDelegate wndProcDelegate ) : IntPtr
WndProc ( IntPtr hWnd, int msg, IntPtr wParam, IntPtr lParam ) : IntPtr

Handler for the WndProcDelegate

Method Details

AssignHandle() public méthode

Assigns a handle to this window
public AssignHandle ( IntPtr hWnd ) : void
hWnd System.IntPtr The handle to assign to this window
Résultat void

DefWndProc() public méthode

Invokes the default window procedure associated with this window. It is an error to call this method when the Handle property is 0
public DefWndProc ( System &m ) : void
m System A Message that is associated with the current Windows message
Résultat void

NativeWindow() public méthode

Initializes a new instance of the NativeWindow class
public NativeWindow ( ) : System
Résultat System

ReleaseHandle() public méthode

Releases the handle associated with this window
public ReleaseHandle ( ) : void
Résultat void

WndProc() protected méthode

Invokes the default window procedure associated with this window
protected WndProc ( System &msg ) : void
msg System A Message that is associated with the current Windows message
Résultat void