Information
The topic you requested is included in another documentation set. For convenience, it's displayed below. Choose Switch to see the topic in its original location.

Control::OnNotifyMessage Method (Message)

 

Notifies the control of Windows messages.

Namespace:   System.Windows.Forms
Assembly:  System.Windows.Forms (in System.Windows.Forms.dll)

protected:
virtual void OnNotifyMessage(
	Message m
)

Parameters

m
Type: System.Windows.Forms::Message

A Message that represents the Windows message.

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 in a derived class, calling the base class's OnNotifyMessage method is not necessary because there is no initial implementation.

.NET Framework
Available since 1.1
Return to top
Show: