WPF样式覆盖Style.Resources属性

时间:2016-07-22 10:43:54

标签: wpf

我的风格如下。

<TextBox HorizontalContentAlignment="Center" Text="{Binding IpAddress, Mode=TwoWay}" ToolTip="Ip Address of camera">
                    <TextBox.Style>
                        <Style TargetType="TextBox" xmlns:sys="clr-namespace:System;assembly=mscorlib">
                            <Style.Resources>
                                <VisualBrush x:Key="CueBannerBrush" AlignmentX="Center"  AlignmentY="Center" Stretch="None">
                                    <VisualBrush.Visual>
                                        <Label Content="Camera Ip Address" Foreground="Gray" Opacity="0.5" FontStyle="Italic" />
                                    </VisualBrush.Visual>
                                </VisualBrush>
                            </Style.Resources>
                            <Style.Triggers>
                                <Trigger Property="Text" Value="{x:Static sys:String.Empty}">
                                    <Setter Property="Background" Value="{StaticResource CueBannerBrush}" />
                                </Trigger>
                                <Trigger Property="Text" Value="{x:Null}">
                                    <Setter Property="Background" Value="{StaticResource CueBannerBrush}" />
                                </Trigger>
                                <Trigger Property="IsKeyboardFocused" Value="True">
                                    <Setter Property="Background" Value="White" />
                                </Trigger>
                            </Style.Triggers>
                        </Style>
                    </TextBox.Style>
                </TextBox>     

我已将其作为资源字典保存在Skin.xaml文件中,以便按照答案here中的说明重新使用。

但是现在我希望Content="Camera Ip Address"(样式中的第7行)对于我应用样式的每个文本框都不同。我看到了SO答案thisthis。这些SO答案建议使用BasedOn属性,但我不知道如何将其应用于我的案例。我的情况似乎有很多层次。有人可以建议我如何实现这一目标。

基本上我想要的是,对于我应用内容的一个文本框应该是相机IP地址,而对于另一个文本框我希望这个内容是相机登录。我如何实现这一目标?

1 个答案:

答案 0 :(得分:1)

您可以将内部Label的内容设置为TextBox的Tag属性,然后将其显示在Label中。

像这样:

<TextBox Tag="Whatever you want">
    <TextBox.Style>
        <Style TargetType="TextBox">
            <Style.Resources>
                <VisualBrush x:Key="CueBannerBrush">
                     <VisualBrush.Visual>
                         <Label Content="{Binding RelativeSource={RelativeSource Mode=FindAncestor,AncestorType=TextBox},Path=Tag,Mode=OneWay" />
                     </VisualBrush.Visual>
                </VisualBrush>
            </Style.Resources>
        </Style>
    </TextBox.Style>
</TextBox>