Shape.ContextMenuStripChanged Event

Occurs when the value of the ContextMenuStrip property changes.

Namespace:  Microsoft.VisualBasic.PowerPacks
Assembly:  Microsoft.VisualBasic.PowerPacks.Vs (in Microsoft.VisualBasic.PowerPacks.Vs.dll)

Syntax

'Declaration
<BrowsableAttribute(True)> _
Public Event ContextMenuStripChanged As EventHandler
[BrowsableAttribute(true)]
public event EventHandler ContextMenuStripChanged
[BrowsableAttribute(true)]
public:
 event EventHandler^ ContextMenuStripChanged {
    void add (EventHandler^ value);
    void remove (EventHandler^ value);
}
[<BrowsableAttribute(true)>]
member ContextMenuStripChanged : IEvent<EventHandler,
    EventArgs>
JScript does not support events.

Remarks

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

For more information about how to handle events, see Consuming Events.

Examples

The following example displays a message when a change occurs to the shortcut menu. This example requires that you have a RectangleShape control named RectangleShape1 on a form.

Private Sub RectangleShape1_ContextMenuStripChanged(
  ) Handles RectangleShape1.ContextMenuStripChanged

    MsgBox("A new shortcut menu is available")
End Sub
private void rectangleShape1_ContextMenuStripChanged(object sender, System.EventArgs e)
{
    MessageBox.Show("A new shortcut menu is available");
}

.NET Framework Security

See Also

Reference

Shape Class

Microsoft.VisualBasic.PowerPacks Namespace

Other Resources

How to: Draw Lines with the LineShape Control (Visual Studio)

How to: Draw Shapes with the OvalShape and RectangleShape Controls (Visual Studio)

Introduction to the Line and Shape Controls (Visual Studio)