WPF:在某个控件的Trigger中追逐另一个控件的属性

时间:2011-08-06 14:11:05

标签: wpf xaml triggers styles

这是我的文本块。

    <Image x:Name:imgAnother/>

    <TextBlock>
        this is my text block
        <TextBlock.Style>
            <Style TargetType="TextBlock">
                <Setter Property="TextDecorations" Value="None"/>
                <Style.Triggers>
                    <Trigger Property="TextBlock.IsMouseOver" Value="True">
                        <Setter Property="Foreground" Value="RoyalBlue"/>
                        <!--I like to insert a code at here that changes another control's property...-->
                    </Trigger>
                    <Trigger Property="TextBlock.IsMouseOver" Value="False">
                        <Setter Property="Foreground" Value="#FF808080"/>
                        <!--..and this line too.-->
                   </Trigger>
                </Style.Triggers>                    
            </Style>
        </TextBlock.Style>
    </TextBlock>

我喜欢制作一个xaml代码,它可以改变另一个控件的功能,例如“imgAnother”。

我该怎么做?

1 个答案:

答案 0 :(得分:12)

您必须以某种方式聚合源和目标。

您可以创建包含超链接/文本块和图像的自定义控件。如果您有几个在这种情况下表现的块,那么这是首选方法。

如果你不喜欢这个。您可以按如下方式创建“临时”匿名控件:

<ControlTemplate x:Key="myCtl" TargetType="ContentControl">
  <StackPanel>
    <Image x:Name="img"/>
    <ContentPresenter x:Name="ctr" />
  </StackPanel>

  <ControlTemplate.Triggers>
                    <Trigger SourceName="ctr" Property="IsMouseOver" Value="True">
                        <Setter TargetName="ctr" Property="Foreground" Value="RoyalBlue"/>
                        <!--I like to insert a code at here that changes another control's property...-->
                    </Trigger>
                    <Trigger SourceName="ctr" Property="IsMouseOver" Value="False">
                        <Setter TargetName="ctr" Property="Foreground" Value="#FF808080"/>
                        <!--..and this line too.-->
                   </Trigger>
  </ControlTemplate.Triggers>
</ControlTemplate>

上面的xaml将驻留在Window的资源中。

注意:它非常像一个跟踪的轨道,而不是一个功能齐全的片段!

在体内,你可以这样的方式引用控件:

<ContentControl Template="{StaticResource myCtl}" Content="this is my text block" />

希望它有所帮助。