2016-07-22 113 views
-1

我有一個樣式如下。WPF樣式覆蓋Style.Resources屬性

<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地址,而對於另一個文本框我想這個內容是相機登錄一個文本框。我如何實現這一目標?

回答

0

您可以將該內部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> 
+0

我的風格有觸發器,他們不點火。 :( – VivekDev