密码框占位符文本颜色

时间:2015-05-21 07:16:04

标签: c# xaml templates windows-phone-8.1

如何更改Windows Phone 8.1上passwordBox的placeHolder文本的颜色?我使用这个模板:

<main>

虽然我将前景色更改为白色,但占位符文字显示为灰色。 Screeshot

在普通的textBox占位符文本中,我根据需要显示为白色。有人知道我是否需要添加一些属性或其他东西

1 个答案:

答案 0 :(得分:0)

如果某人遇到同样的情况,要更改占位符颜色,样式中会有一个属性标记,并且有人可以更改前景属性。

<ContentControl x:Name="PlaceholderTextContentPresenter" Content="{TemplateBinding PlaceholderText}" 
                                        Foreground="White" 
                                        IsTabStop="False" Margin="{ThemeResource RichEditBoxTextThemeMargin}" 
                                        Padding="{TemplateBinding Padding}" Grid.Row="1"/>