2

例如,我有元素的样式,并且我想使用触发器更改特定资源

<Style x:Key="MyStyle" TargetType="{x:Type Tree:MyListBox}">
    <Style.Triggers>
        <DataTrigger Binding="{Binding Property}" Value="ItemSelected">
           <Setter Property="MydinamicResourceKey" Value="NewValue"/>
        </DataTrigger>
    </Style.Triggers>
</Style>

可能吗?

4

1 回答 1

0

也许尝试使用 VisualStateManager?

这是来自Microsoft 的 ListBox Styles and Templates 页面的想法

<Style x:Key="MyStyle" TargeType="{x:Type Tree:MyListBox}">
  <Setter Property="Template">
    <Setter.Value>
      <ControlTemplate TargetType="{x:Type Tree:MyListBox}">
         <Border x:Name="Border">
           <VisualStateManager.VisualStateGroups>
              <VisualStateGroup x:Name="SelectionStates">
                 <VisualState x:Name="Unselected"/>
                 <VisualState x:Name="Selected">
                    <Storyboard>
                       <ObjectAnimationUsingKeyFrames Storyboard.TargetName="myUIElementName"
                                                      Storyboard.TargetProperty="myUIElementProperty">
                            <DiscreteObjectKeyFrame KeyTime="0:0:0" Value="{DynamicResource MyResourceKey}"/>
                        </ObjectAnimationUsingKeyFrames>
                       </Storyboard>
                      </VisualState>
                     </VisualStateGroup>
                    </VisualStateManager.VisualStateGroups>
                    .... more code here....
                  </Border>
                 </ControlTemplate>
                </Setter.Value>
               </Setter>
             </Style>

我有一个由 Shawn Wildermuth 编写的关于此类动画/更改的教程——我仍然经常参考它。

希望这会有所帮助,并且可以使您朝着正确的方向前进。

于 2014-06-26T21:44:04.990 回答