Shape.CursorChanged Event

 

Occurs when the value of the Cursor property changes.

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

Syntax

[BrowsableAttribute(true)]
public event EventHandler CursorChanged
public:
[BrowsableAttribute(true)]
event EventHandler^ CursorChanged {
    void add(EventHandler^ value);
    void remove(EventHandler^ value);
}
[<BrowsableAttribute(true)>]
member CursorChanged : IEvent<EventHandler,
    EventArgs>
<BrowsableAttribute(True)>
Public Event CursorChanged As EventHandler

Remarks

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

For more information about how to handle events, see Handling and Raising Events.

Examples

The following example displays a message in the status bar when a change occurs to the Cursor property. This example requires that you have a RectangleShape control named RectangleShape1 and a StatusStrip control named StatusStrip1 on a form. The StatusStrip must have a ToolStripStatusLabel named ToolStripStatusLabel1.

private void rectangleShape1_CursorChanged(object sender, System.EventArgs e)
{
    toolStripStatusLabel1.Text = "This shape is currently disabled.";
}
Private Sub RectangleShape1_CursorChanged(
  ) Handles RectangleShape1.CursorChanged

    ToolStripStatusLabel1.Text = "This shape is currently disabled."
End Sub

See Also

Shape Class
Microsoft.VisualBasic.PowerPacks Namespace
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)

Return to top