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 建立 並新增文字「這是一些文字」。 此範例會將 CaretBrush 的 TextBox 和 Foreground 屬性設定為藍色。
<TextBox SelectionBrush="Red" SelectionOpacity="0.5"
Foreground="Blue" CaretBrush="Blue">
This is some text.
</TextBox>
上述範例會產生類似下圖的輸出。
將 CaretBrush 設定為藍色的 TextBox