Control.OnNotifyMessage(Message) Method

Definition

Notifies the control of Windows messages.

protected:
 virtual void OnNotifyMessage(System::Windows::Forms::Message m);
protected virtual void OnNotifyMessage (System.Windows.Forms.Message m);
abstract member OnNotifyMessage : System.Windows.Forms.Message -> unit
override this.OnNotifyMessage : System.Windows.Forms.Message -> unit
Protected Overridable Sub OnNotifyMessage (m As Message)

Parameters

m
Message

A Message that represents the Windows message.

Remarks

The OnNotifyMessage method is called if the control's EnableNotifyMessage style bit is set in ControlStyles. The EnableNotifyMessage style in ControlStyles enables the control to be notified when the WndProc method receives a Windows message. With this method, semi-trusted controls can listen for Windows messages without enabling them to modify the message.

Notes to Inheritors

When overriding OnNotifyMessage(Message) in a derived class, calling the base class's OnNotifyMessage(Message) method is not necessary because there is no initial implementation.

Applies to