Leadtools.WinForms Send comments on this topic. | Back to Introduction - All Topics | Help Version 15.8.31
WndProc Method
See Also 
Leadtools.WinForms Namespace > RasterImageList Class : WndProc Method




m
The Windows 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
)
Managed Extensions for C++ 
protected: void WndProc( 
   ref Message m
) override 
C++/CLI 
protected:
void WndProc( 
   ref Message m
) override 

Parameters

m
The Windows 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 98, Windows NT 4.0, Windows Millennium Edition, Windows 2000, Windows XP Home Edition, Windows XP Professional, Windows Server 2003 family

See Also