バージョン

Cursor プロパティ (UIElement)

マウスが要素の上に移動したときに使用されるカーソルを返します。デフォルトでは、親のカーソルを返すまで親チェーンに近づきます
シンタックス
'宣言
 
Public Overridable ReadOnly Property Cursor As Cursor
public virtual Cursor Cursor {get;}
使用例
Imports System.Windows.Forms

Public Overrides ReadOnly Property Cursor() As Cursor

    Get
        Return Cursors.Hand
    End Get

End Property
using System.Windows.Forms;

public override Cursor Cursor
{

	get
	{
		return Cursors.Hand ;
	}

}
参照