2

在我们的 WPF 应用程序中,我们有一个通用的控件模板,用于以一致的方式显示错误

<ResourceDictionary>
    <ControlTemplate x:Key="ErrorTemplate">
        <Border BorderThickness="1" BorderBrush="Red">
            <AdornedElementPlaceholder />
        </Border>
    </ControlTemplate>
</ResourceDictionary>

在我们的应用程序的其他地方,当控件可能显示错误时,我们像这样设置 ErrorTemplate

<TextBox Validation.ErrorTemplate="{DynamicResource ErrorTemplate}" />

我现在想在此错误模板中显示工具提示,但是在边框上设置工具提示属性并没有太大帮助,因为工具提示仅在用户将鼠标悬停在 1px 宽的边框上时才显示,而不是控件本身出现错误.

我知道我可以在样式中设置工具提示,但是此错误模板适用于许多不同的控件(组合框等...),并且其中许多控件还使用独立于我的错误模板的样式 - 我真的很想能够以通用方式将我的错误模板应用于任何控件。

有什么方法可以在我的 ErrorTemplate 中设置工具提示?

4

3 回答 3

1

我定义了一种风格。我的对象(客户)上有 IDataErrorInfo,它对属性(姓氏)进行验证,例如数据绑定到文本框。这是我的风格:

<Style x:Key="ValidationTextBox" TargetType="{x:Type Control}">
            <Setter Property="VerticalAlignment" Value="Center"/>
            <Setter Property="Margin" Value="0,2,40,2"/>
            <Setter Property="Validation.ErrorTemplate">
                <Setter.Value>
                    <ControlTemplate>
                        <DockPanel LastChildFill="True">
                            <Border Background="#B22222" DockPanel.Dock="Right" Margin="5,0,0,0" Width="20" Height="20" CornerRadius="10"
                                    ToolTip="{Binding ElementName=customAdorner, Path=AdornedElement.(Validation.Errors)[0].ErrorContent}">
                                <TextBlock Text="!" VerticalAlignment="Center" HorizontalAlignment="Center" FontWeight="Bold" Foreground="White"/>
                            </Border>
                            <AdornedElementPlaceholder Name="customAdorner" VerticalAlignment="Center">
                                <Border BorderBrush="#B22222" BorderThickness="1" />
                            </AdornedElementPlaceholder>
                        </DockPanel>
                    </ControlTemplate>
                </Setter.Value>
            </Setter>
        </Style

<TextBox Style="{StaticResource ValidationTextBox}" Text="{Binding Path=Customer.LastName, Mode=TwoWay, UpdateSourceTrigger=PropertyChanged, NotifyOnTargetUpdated=True, ValidatesOnDataErrors=True, ValidatesOnExceptions=True}" />

于 2013-02-27T17:59:15.583 回答
0

正如我在这里的回答中所说,您可以:

<ControlTemplate x:Key="ErrorTemplate">
    <Border BorderThickness="1" BorderBrush="Red"
            Background="Transparent"
            ToolTip="{Binding Path=/ErrorContent}">
        <AdornedElementPlaceholder />
    </Border>
</ControlTemplate>
于 2013-02-27T18:42:51.823 回答
0

对不起,我昨天没有时间......你能在下面试试,看看这是否是你所追求的,好吗?

<Style x:Key="ValidationTextBox2" TargetType="{x:Type Control}">
            <Setter Property="VerticalAlignment" Value="Center"/>
            <Setter Property="Validation.ErrorTemplate">
                <Setter.Value>
                    <ControlTemplate>
                        <Border BorderBrush="Red" BorderThickness="2">
                            <DockPanel LastChildFill="True" ToolTip="{Binding ElementName=customAdorner, Path=AdornedElement.(Validation.Errors)[0].ErrorContent}" Background="Transparent">
                                <TextBlock />
                            <AdornedElementPlaceholder Name="customAdorner" VerticalAlignment="Center">
                            </AdornedElementPlaceholder>
                        </DockPanel>
                        </Border>
                    </ControlTemplate>
                </Setter.Value>
            </Setter>
        </Style>
于 2013-03-01T13:49:21.557 回答