LEADTOOLS Windows Forms (Leadtools.WinForms assembly) Send comments on this topic. | Back to Introduction - All Topics | Help Version 17.0.3.30
WndProc Method
See Also 
Leadtools.WinForms Namespace > RasterImageList Class : WndProc Method



m
The Windows System.Windows.Forms.Message to process.
m
The Windows System.Windows.Forms.Message to process.
This member overrides Control.WndProc.

Syntax

Visual Basic (Declaration) 
Overrides Protected Sub WndProc( _
   ByRef m As Message _
) 
Visual Basic (Usage)Copy Code
Dim instance As RasterImageList
Dim m As Message
 
instance.WndProc(m)
C# 
protected override void WndProc( 
   ref Message m
)
C++/CLI 
protected:
void WndProc( 
   % Message m
) override 

Parameters

m
The Windows System.Windows.Forms.Message to process.

Remarks

The WndProc method corresponds exactly to the Windows WindowProc function. For more information about processing Windows messages, see the WindowProc function documentation in the Windows Platform SDK reference located in the MSDN library at http://msdn.microsoft.com/library.

Notes to Inheritors Inheriting controls should call the base class's WndProc method to process any messages that they do not handle.

Requirements

Target Platforms: Microsoft .NET Framework 2.0, Windows 2000, Windows XP, Windows Server 2003 family, Windows Server 2008 family, Windows Vista, Windows 7

See Also