3

我知道 wpf 中的密码框无法使用 Validation.ErrorTemplate,无论如何我必须向用户显示有问题。

我的密码箱有这样的绑定

 <PasswordBox Name="Password" local:PasswordHelper.Text="{Binding PasswordProp, Mode=TwoWay}" />

如果出现问题,是否可以获得与此密码框的默认错误模板(红色边框)相同的样式?

这是我用于其他控件的 ErrorTemplate

<Style x:Key="baseControlStyle">
    <Setter Property="Control.FontFamily" Value="Verdana" />
    <Setter Property="Control.FontSize" Value="12" />
    <Setter Property="ToolTipService.ShowOnDisabled" Value="True" />

    <Setter Property="Validation.ErrorTemplate" >
        <Setter.Value>
            <ControlTemplate>
                <DockPanel LastChildFill="True">
                    <Image x:Name="Bild" 
                           DockPanel.Dock="Right" 
                           Source="../Resources/Nein.ico" 
                           Margin="-5 0 0 0" 
                           MaxHeight="16" 
                           MaxWidth="16" 
                           VerticalAlignment="Center" 
                           ToolTip="{Binding ElementName=myControl, Path=AdornedElement.(Validation.Errors)[0].ErrorContent}">
                    </Image>
                    <Border BorderBrush="Red" BorderThickness="1" CornerRadius="2">
                        <AdornedElementPlaceholder x:Name="myControl" />
                    </Border>
                </DockPanel>
            </ControlTemplate>
        </Setter.Value>
    </Setter>
    <Style.Triggers>
        <Trigger Property="Validation.HasError" Value="true">
            <Setter Property="Control.ToolTip" Value="{Binding RelativeSource={RelativeSource Self}, Path=(Validation.Errors)[0].ErrorContent}"/>
        </Trigger>
    </Style.Triggers>
</Style>

谢谢

4

1 回答 1

2

一种解决方案是将实际放在TextBox下面并将属性也PasswordBox绑定到并提供ErrorTemplate:TextPasswordPropTextBox

<Grid>
    <TextBox Template="{x:Null}" Style="{StaticResource baseControlStyle}" Text="{Binding PasswordProp, Mode=TwoWay}" />    
    <PasswordBox Name="Password" local:PasswordHelper.Text="{Binding PasswordProp, Mode=TwoWay}" />
</Grid>

由于 ErrorTemplate 的控件将放置在装饰层上,因此您的错误模板将显示在 PasswordBox 事件的顶部, 尽管 TextBox 在 PasswordBox 下方。

另请注意,我已将TextBoxcontroltemplate 设置为null. 由于它不应该是可见的,因此不需要渲染。

于 2012-07-05T08:52:41.830 回答