- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我有一个将以下 DataTemplate
设置为 ItemTemplate
的列表框,我想使用 Codebehind 更改它的 VisualState
。
数据模板:
<DataTemplate x:Key="SortedRecommendationTemplate">
<Border x:Name="asds">
<VisualStateManager.VisualStateGroups>
<VisualStateGroup x:Name="VisualStateGroup">
<VisualState x:Name="OnlyNameState">
<Storyboard>
...
</Storyboard>
</VisualState>
<VisualState x:Name="OnlyImageState"/>
<VisualState x:Name="AllInfoState">
<Storyboard>
...
</Storyboard>
</VisualState>
</VisualStateGroup>
</VisualStateManager.VisualStateGroups>
<Grid>
...
</Grid
</Border>
</DataTemplate>
这是我用来获取边框的代码(FindChild 来自 How to find element in visual tree? wp7)并更改 VisualState
var blub = FindChild<Border>(listBox, "asds");
VisualStateManager.GoToState(blub, "AllInfoState", true);
但是,GoToStates 返回 false。 blub 确实是我想要的边框(它是第一个 Listboxitem)但是 VisualStates 似乎有效,因为当我使用 Blend 中的行为时,它们实际上确实发生了变化:
触发器:
<i:Interaction.Triggers>
<i:EventTrigger EventName="MouseEnter">
<ei:GoToStateAction StateName="AllInfoState" TargetObject="{Binding ElementName=asds}"/>
</i:EventTrigger>
<i:EventTrigger EventName="MouseLeave">
<ei:GoToStateAction StateName="OnlyNameState" TargetObject="{Binding ElementName=asds}"/>
</i:EventTrigger>
有人知道这是怎么回事吗?提前致谢!
最佳答案
这是因为Border
不是Control
,而是FrameworkElement
。 VisualStateManager.GoToState(Control control, string stateName, bool useTransitions)
但是仅适用于 Control
。
您可以使用 ExtendedVisualStateManager.GoToElementState(FrameworkElement root, string stateName, bool useTransitions)
,您可以在 Microsoft.Expression.Interactivity.Core 中找到它。我想这就是 Blend 内部使用的。
关于c# - VisualStateManager.GoToState 不适用于 DataTemplate,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11592925/
我是一名优秀的程序员,十分优秀!