Mouse.OverrideCursor プロパティ
定義
重要
一部の情報は、リリース前に大きく変更される可能性があるプレリリースされた製品に関するものです。 Microsoft は、ここに記載されている情報について、明示または黙示を問わず、一切保証しません。
アプリケーション全体のカーソルを取得または設定します。
public:
static property System::Windows::Input::Cursor ^ OverrideCursor { System::Windows::Input::Cursor ^ get(); void set(System::Windows::Input::Cursor ^ value); };
public static System.Windows.Input.Cursor OverrideCursor { get; set; }
static member OverrideCursor : System.Windows.Input.Cursor with get, set
Public Shared Property OverrideCursor As Cursor
プロパティ値
OverrideCursor が設定されていない場合は、オーバーライド カーソルまたは null
。
例
次の例は、1 つの要素とアプリケーション全体の間でカーソル変更のスコープを切り替えるために使用される RadioButton のイベント ハンドラーを示しています。 イベントを発生させたコントロールが rbScopeElement
RadioButtonの場合、カーソル変更のスコープを示すフラグが設定され、OverrideCursor が null
に設定されます。 イベントを発生させたコントロールが rbScopeApplication
RadioButtonの場合は、カーソル変更のスコープを示すフラグが設定され、OverrideCursor は DisplayArea
という名前の Border コントロールの Cursor プロパティに設定されます。
// Determines the scope the new cursor will have.
//
// If the RadioButton rbScopeElement is selected, then the cursor
// will only change on the display element.
//
// If the Radiobutton rbScopeApplication is selected, then the cursor
// will be changed for the entire application
//
private void CursorScopeSelected(object sender, RoutedEventArgs e)
{
RadioButton source = e.Source as RadioButton;
if (source != null)
{
if (source.Name == "rbScopeElement")
{
// Setting the element only scope flag to true
cursorScopeElementOnly = true;
// Clearing out the OverrideCursor.
Mouse.OverrideCursor = null;
}
if (source.Name == "rbScopeApplication")
{
// Setting the element only scope flag to false
cursorScopeElementOnly = false;
// Forcing the cursor for all elements.
Mouse.OverrideCursor = DisplayArea.Cursor;
}
}
}
' Determines the scope the new cursor will have.
'
' If the RadioButton rbScopeElement is selected, then the cursor
' will only change on the display element.
'
' If the Radiobutton rbScopeApplication is selected, then the cursor
' will be changed for the entire application.
'
Private Sub CursorScopeSelected(ByVal sender As Object, ByVal e As RoutedEventArgs)
Dim source As RadioButton = CType(e.Source, RadioButton)
If (source.Name = "rbScopeElement") Then
' Setting the element only scope flag to true.
cursorScopeElementOnly = True
' Clearing out the OverrideCursor.
Mouse.OverrideCursor = Nothing
End If
If (source.Name = "rbScopeApplication") Then
' Setting the element only scope flag to false.
cursorScopeElementOnly = False
' Forcing the cursor for all elements.
Mouse.OverrideCursor = DisplayArea.Cursor
End If
End Sub
注釈
OverrideCursor が設定されている Cursor は、アプリケーション全体に適用されます。
オーバーライド Cursorをクリアするには、OverrideCursor を null
に設定します。
OverrideCursor を None に設定すると、マウス カーソルは強制的に表示されませんが、マウス イベントは引き続き処理されます。
適用対象
.NET