Control::ContextMenuChanged Event

 

Occurs when the value of the ContextMenu property changes.

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

public:
[BrowsableAttribute(false)]
event EventHandler^ ContextMenuChanged {
	void add(EventHandler^ value);
	void remove(EventHandler^ value);
}

This event is raised if the ContextMenu property is changed by either a programmatic modification or user interaction.

For more information about handling events, see Handling and Raising Events.

The following code example displays a message when a change occurs to the shortcut menu.

private:
   void AddContextMenuChangedHandler()
   {
      this->myTextBox->ContextMenuChanged += gcnew EventHandler( this, &MyForm::TextBox_ContextMenuChanged );
   }

   void TextBox_ContextMenuChanged( Object^ /*sender*/, EventArgs^ /*e*/ )
   {
      MessageBox::Show( L"Shortcut menu of TextBox is changed." );
   }

.NET Framework
Available since 1.1
Return to top
Show: