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!

NativeWindow.WndProc

Invokes the default window procedure associated with this window.

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

Parameters

m
A Message that is associated with the current Windows message.

Remarks

This method is called when a window message is sent to the window's handle.

Notes to Inheritors: Override this method to implement specific message processing. Call base.wndProc for any unhandled messages.

See Also

NativeWindow Class | NativeWindow Members | System.WinForms Namespace | NativeWindow | Handle | AssignHandle | CreateHandle | DestroyHandle | ReleaseHandle | Message