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 添加文本“这是一些文本”。 本示例将 a TextBox 的和Foreground属性设置为CaretBrush蓝色。
<TextBox SelectionBrush="Red" SelectionOpacity="0.5"
Foreground="Blue" CaretBrush="Blue">
This is some text.
</TextBox>
前面的示例生成类似于下图的输出。
带 CaretBrush 的 TextBox 设置为蓝色