共用方式為


Shape.CursorChanged 事件

會在 Cursor 屬性的值變更時發生。

命名空間:  Microsoft.VisualBasic.PowerPacks
組件:  Microsoft.VisualBasic.PowerPacks.Vs (在 Microsoft.VisualBasic.PowerPacks.Vs.dll 中)

語法

'宣告
<BrowsableAttribute(True)> _
Public Event CursorChanged As EventHandler
[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 不支援事件。

備註

如果會引發這個事件Cursor屬性變更時以程式設計方式修改或使用者互動。

如需如何處理事件的詳細資訊,請參閱處理和引發事件

範例

下列範例在變更發生時的狀態列中顯示一則訊息Cursor屬性。 此範例中您需要RectangleShape名為 RectangleShape1 控制項和StatusStrip名 StatusStrip1 為表單上的控制項。 StatusStrip必須ToolStripStatusLabel名為 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 安全性

請參閱

參考

Shape 類別

Microsoft.VisualBasic.PowerPacks 命名空間

其他資源

如何:使用 LineShape 控制項繪製線條 (Visual Studio)

如何:使用 OvalShape 和 RectangleShape 控制項繪製圖案 (Visual Studio)

Line 和 Shape 控制項簡介 (Visual Studio)