PasswordBox.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
属性值
描述密码框插入符号颜色的画笔。
示例
以下示例创建 ,PasswordBox并将 和 Foreground 设置为CaretBrush红色。
<PasswordBox SelectionBrush="Green" SelectionOpacity="0.5"
Foreground="Red" CaretBrush="Red"/>
前面的示例生成类似于下图的输出。
将 CaretBrush 设置为红色的 PasswordBox
注解
可以设置 CaretBrush 的 PasswordBox 属性以指定其插入点的颜色。 例如,可以将 设置为 CaretBrush 与 属性相同的值 Foreground 。 Foreground指示 中PasswordBox字符的颜色PasswordChar。