NGWS SDK Documentation  

This is preliminary documentation and subject to change.
To comment on this topic, please send us email at ngwssdk@microsoft.com. Thanks!

ListBox.WndProc

The list's window procedure. Inheriting classes can override this to add extra functionality, but should not forget to call base.wndProc(m); to ensure the list continues to function properly.

[Visual Basic]
Overrides Protected Sub WndProc( _
   ByRef m As Message _
)
[C#]
protected override void WndProc(
   ref Message m
);
[C++]
protected: override void WndProc(
   Message** m
);
[JScript]
protected override function WndProc(
   m : Message
);

Parameters

m
A Windows Message Object.

See Also

ListBox Class | ListBox Members | System.WinForms Namespace