我可以在ItemTemplate中更改DataTemplate的VisualState吗?

时间:2012-11-22 02:29:32

标签: silverlight windows-phone-7 xaml datatemplate visualstatemanager

我在DataTemplate中有一些控件,我想控制它的按下状态行为。我做了以下我只是在DataTemplate中放入VisualStateManager但它似乎不起作用。我想我可以理解下面要做的事情。是否可以在DataTemplate标签内部进行内联?

<ItemsControl ItemsSource="{Binding Items}">
    ....
    <ItemsControl.ItemTemplate>
        <DataTemplate>
          <Grid ...>
             <VisualStateManager.VisualStateGroups>
                 <VisualStateGroup x:Name="CommonStates">
                     ...
                     <VisualState x:Name="Pressed">
                         <Storyboard>
                             <ObjectAnimationUsingKeyFrames Storyboard.TargetProperty="BorderThickness" Storyboard.TargetName="GridItemBorder">
                                 <DiscreteObjectKeyFrame KeyTime="0" Value="3"/>
                              </ObjectAnimationUsingKeyFrames>
                         </Storyboard>
                     </VisualState>
                 </VisualStateGroup>
             </VisualStateManager.VisualStateGroups>
             <Border x:Name="Border" ...>
                 ...
             </Border>
          </Grid>
      </DataTemplate>
  </ItemsControl.ItemTemplate>
</ItemsControl>

1 个答案:

答案 0 :(得分:2)

简短的回答是,您所针对的控件类型没有“按下”的可视状态 - 因此,虽然您可以在Visual State Manager中引用任何状态,但这并不重要,因为控件的代码将会从来没有把它放到那个状态。

您可以通过查看控件的定义(使用TemplateVisualState属性声明它们)或查看this section on MSDN来查看控件支持的视觉状态。

这里的方法可能是使用Button(或你写的[ButtonBase][2]的覆盖),因为它内置了“Pressed”视觉状态。你只需拥有为它编写一个控件模板,提供你所追求的布局/样式。


修改以下是一个例子:

控制模板(资源部分)。这是Button控件的控件模板,但它实际上不是一个按钮。我只是用它来利用“按下”的视觉状态功能。

    <ControlTemplate x:Key="MyButtonTemplate" TargetType="Button">
        <Grid>
            <VisualStateManager.VisualStateGroups>
                <VisualStateGroup x:Name="CommonStates">
                    <VisualState x:Name="Pressed">
                        <Storyboard>
                            <ObjectAnimationUsingKeyFrames Storyboard.TargetProperty="(Border.BorderThickness)" Storyboard.TargetName="GridItemBorder">
                                <DiscreteObjectKeyFrame KeyTime="0" Value="3"/>
                            </ObjectAnimationUsingKeyFrames>
                        </Storyboard>
                    </VisualState>
                </VisualStateGroup>
            </VisualStateManager.VisualStateGroups>
            <Border x:Name="GridItemBorder" BorderBrush="Orange" BorderThickness="1" Background="White">
                <ContentPresenter Content="{TemplateBinding Content}" />
            </Border>
        </Grid>
    </ControlTemplate>

项目控制

将项目模板定义为使用上述ControlTemplate的“Button”。

    <ItemsControl ItemsSource="{Binding SelectedItems}">
        <ItemsControl.ItemTemplate>
            <DataTemplate>
                <Button Template="{StaticResource MyButtonTemplate}" Content="{Binding}" />
            </DataTemplate>
        </ItemsControl.ItemTemplate>
    </ItemsControl>