NativeWindow.DefWndProc(Message) Method

Definition

Invokes the default window procedure associated with this window.

public:
 void DefWndProc(System::Windows::Forms::Message % m);
public void DefWndProc (ref System.Windows.Forms.Message m);
member this.DefWndProc : Message -> unit
Public Sub DefWndProc (ByRef m As Message)

Parameters

m
Message

The message that is currently being processed.

Remarks

Typically, you only call the DefWndProc method when you are intercepting window messages and would like the default window procedure to handle the message. DefWndProc should not be called to send a window message to the window; call the Win32 SendMessage function instead.

It is an error to call DefWndProc when the Handle property is 0.

Notes to Inheritors

Override this method in a derived class to implement generalized custom message handling for a specific native window or .NET Windows Forms Control. Custom processing can be performed before, after, or instead of a call to the base class implementation of this method, which performs standard message processing.

In contrast, adding customized message handling for an application can be accomplished through the AddMessageFilter(IMessageFilter) method of the Application class.

Applies to

See also