TextBoxBase.CaretBrush プロパティ
定義
重要
一部の情報は、リリース前に大きく変更される可能性があるプレリリースされた製品に関するものです。 Microsoft は、ここに記載されている情報について、明示または黙示を問わず、一切保証しません。
テキスト ボックスのキャレットの描画に使用するブラシを取得または設定します。
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
プロパティ値
テキスト ボックスのキャレットの描画に使用するブラシ。
例
次の例では、 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 を青に設定したテキスト ボックス