Mouse.OverrideCursor Proprietà
Definizione
Importante
Alcune informazioni sono relative alla release non definitiva del prodotto, che potrebbe subire modifiche significative prima della release definitiva. Microsoft non riconosce alcuna garanzia, espressa o implicita, in merito alle informazioni qui fornite.
Ottiene o imposta il cursore per l'intera applicazione.
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
Valore della proprietà
Cursore di override o null
se il OverrideCursor non è impostato.
Esempio
Nell'esempio seguente viene illustrato un gestore eventi per un RadioButton utilizzato per attivare o disattivare l'ambito di una modifica del cursore tra un singolo elemento e l'intera applicazione. Se il controllo che ha generato l'evento è il rbScopeElement
RadioButton, viene impostato un flag che indica l'ambito della modifica del cursore e OverrideCursor è impostato su null
. Se il controllo che ha generato l'evento è il rbScopeApplication
RadioButton, viene impostato un flag che indica l'ambito della modifica del cursore e OverrideCursor viene impostata sulla proprietà Cursor del controllo Border denominato DisplayArea
.
// 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
Commenti
Il Cursor che OverrideCursor è impostato su verrà applicato all'intera applicazione.
Per cancellare l'override Cursor, impostare OverrideCursor su null
.
Se si imposta OverrideCursor su None, il cursore del mouse non verrà visualizzato, ma gli eventi del mouse vengono comunque elaborati.