PasswordBox.CaretBrush Proprietà

Definizione

Ottiene o imposta il pennello che specifica il colore del cursore della casella della password.

public:
 property System::Windows::Media::Brush ^ CaretBrush { System::Windows::Media::Brush ^ get(); void set(System::Windows::Media::Brush ^ value); };
public System.Windows.Media.Brush CaretBrush { get; set; }
member this.CaretBrush : System.Windows.Media.Brush with get, set
Public Property CaretBrush As Brush

Valore della proprietà

Pennello che descrive il colore del cursore della casella della password.

Esempio

Nell'esempio seguente viene creato un PasswordBox oggetto e viene impostato su CaretBrush rosso Foreground .

<PasswordBox SelectionBrush="Green" SelectionOpacity="0.5" 
             Foreground="Red" CaretBrush="Red"/>

Nell'esempio precedente viene generato un output simile alla figura seguente.

PasswordBox con CaretBrush impostato su rosso.
PasswordBox con CaretBrush impostato su rosso

Commenti

È possibile impostare la CaretBrush proprietà di un PasswordBox per specificare il colore del suo caret. Ad esempio, è possibile impostare CaretBrush per essere lo stesso valore della Foreground proprietà. Foreground indica il colore dei PasswordChar caratteri in PasswordBox.

Si applica a