TextBoxBase.CaretBrush プロパティ

定義

テキスト ボックスのキャレットの描画に使用するブラシを取得または設定します。

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

プロパティ値

Brush

テキスト ボックスのキャレットの描画に使用するブラシ。

次の例では、 TextBox "This is some text" というテキストを作成して追加します。 この例では、a の CaretBrush プロパティと Foreground プロパティを TextBox 青に設定します。

<TextBox SelectionBrush="Red" SelectionOpacity="0.5"
         Foreground="Blue" CaretBrush="Blue">  
  This is some text.
</TextBox>

上の例では、次の図のような出力が生成されます。

CaretBrush が青の TextBox
CaretBrush を青に設定したテキスト ボックス

適用対象