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 CursorChanged As EventHandler
'الاستخدام
Dim instance As Shape
Dim handler As EventHandler
AddHandler instance.CursorChanged, handler
[BrowsableAttribute(true)]
public event EventHandler CursorChanged
[BrowsableAttribute(true)]
public:
event EventHandler^ CursorChanged {
void add (EventHandler^ value);
void remove (EventHandler^ value);
}
[<BrowsableAttribute(true)>]
member CursorChanged : IEvent<EventHandler,
EventArgs>
JScript does not support events.
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 Consuming 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 Sub RectangleShape1_CursorChanged(
) Handles RectangleShape1.CursorChanged
ToolStripStatusLabel1.Text = "This shape is currently disabled."
End Sub
private void rectangleShape1_CursorChanged(object sender, System.EventArgs e)
{
toolStripStatusLabel1.Text = "This shape is currently disabled.";
}
.NET Framework Security
- Full trust for the immediate caller. This member cannot be used by partially trusted code. For more information, see Using Libraries from Partially Trusted Code.
See Also
Reference
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)