我有一个Lisbox,其中我已经制作了一个ItemsTemplate,在这个项目模板中,我有一个元素,我希望改变visualState,问题是我不知道怎么做改变国家。这是我到目前为止所做的。
<ListBox Name="My_LB" ItemsSource="{Binding Users}" Canvas.Left="45.8256" Canvas.Top="39.3065" Canvas.ZIndex="2" ScrollViewer.VerticalScrollBarVisibility="Disabled">
<ListBox.ItemsPanel>
<ItemsPanelTemplate>
<StackPanel Orientation="Horizontal" />
</ItemsPanelTemplate>
</ListBox.ItemsPanel>
<ListBox.ItemTemplate>
<DataTemplate>
<Grid>
<Ellipse x:Name="user_ellipse" Width="7.87566" Height="7.87563" Canvas.Left="25.3505" Canvas.Top="5.08428e-005" Stretch="Fill" StrokeThickness="1.6" StrokeLineJoin="Round" Stroke="#FF000000">
<VisualStateManager.VisualStateGroups>
<VisualStateGroup x:Name="IsTurn">
<VisualState x:Name="PlayersTurn">
<Storyboard>
<ColorAnimation To="Yellow" Storyboard.TargetName="user_ellipse" Storyboard.TargetProperty="(Shape.Fill).(GradientBrush.GradientStops)[0].(GradientStop.Color)"/>
<ColorAnimation To="Yellow" Storyboard.TargetName="user_ellipse" Storyboard.TargetProperty="(Shape.Fill).(GradientBrush.GradientStops)[1].(GradientStop.Color)"/>
<ColorAnimation To="Yellow" Storyboard.TargetName="user_ellipse" Storyboard.TargetProperty="(Shape.Fill).(GradientBrush.GradientStops)[2].(GradientStop.Color)"/>
</Storyboard>
</VisualState>
</VisualStateGroup>
</VisualStateManager.VisualStateGroups>
<Ellipse.Fill>
<RadialGradientBrush RadiusX="0.651141" RadiusY="0.651175" Center="0.380114,0.308228" GradientOrigin="0.380114,0.308228">
<RadialGradientBrush.RelativeTransform>
<TransformGroup>
<RotateTransform CenterX="0.380114" CenterY="0.308228" Angle="47.4886"/>
</TransformGroup>
</RadialGradientBrush.RelativeTransform>
<GradientStop Color="#FF9F9065" Offset="0"/>
<GradientStop Color="#FF4F4832" Offset="0.685767"/>
<GradientStop Color="#FF000000" Offset="1"/>
</RadialGradientBrush>
</Ellipse.Fill>
</Ellipse>
</Canvas>
</Viewbox>
</Grid>
</DataTemplate>
</ListBox.ItemTemplate>
</ListBox>
这是我到目前为止所得到的,如果有人可以帮助我改变状态而无论如何开始,那将是值得赞赏的。
如果可能,我想根据我的ViewModel中的参数更改状态,我使用MVVM设计,我发现了这个soltuion,但我不知道&#34; b&#34;和d的名称空间因此不知道如何获得&#34; VisualStateSettingBehavior&#34;。
更新 我已将Ellipse更改为按钮,并在我的资源字典中为按钮创建了样式,所以我现在拥有的是:
主页:
<ListBox Name="My_LB" ItemsSource="{Binding Users}" Canvas.Left="45.8256" Canvas.Top="39.3065" Canvas.ZIndex="2" ScrollViewer.VerticalScrollBarVisibility="Disabled">
<ListBox.ItemsPanel>
<ItemsPanelTemplate>
<StackPanel Orientation="Horizontal" />
</ItemsPanelTemplate>
</ListBox.ItemsPanel>
<ListBox.ItemTemplate>
<DataTemplate>
<Grid>
<Button Name="Shield_Light" Canvas.Left="25.3505" Canvas.Top="5.08428e-005" Style="{StaticResource Style1}"/>
</Grid>
</DataTemplate>
</ListBox.ItemTemplate>
</ListBox>
在我的ResourceDictionary中,我得到了syle:
<Style x:Key="Style" TargetType="Button">
<Setter Property="Template">
<Setter.Value>
<ControlTemplate TargetType="Button">
<Ellipse x:Name="Ellipse_Light" Width="7.87566" Height="7.87563" Stretch="Fill" StrokeThickness="1.6" StrokeLineJoin="Round" Stroke="#FF000000" Fill="Red">
<VisualStateManager.VisualStateGroups>
<VisualStateGroup x:Name="CommomStates">
<VisualState x:Name="IsNotTurn"/>
<VisualState x:Name="IsTurn">
<Storyboard>
<ColorAnimation Storyboard.TargetName="Ellipse_Light" Storyboard.TargetProperty="Fill" To="Yellow"/>
</Storyboard>
</VisualState>
</VisualStateGroup>
</VisualStateManager.VisualStateGroups>
</Ellipse>
</ControlTemplate>
</Setter.Value>
</Setter>
</Style>
但我仍然不知道如何更改VisualState以使其变黄。
答案 0 :(得分:2)
首先,最好将椭圆设置为按钮,就像您在更新版本中所做的那样。但是,如果故事板的targetProperty设置不正确,则应将其设置为:
Storyboard.Targetproperty ="(Fill).(SolidColorBrush.Color)"
如果您希望从后面的代码更改VisualState,您应该找到Button然后更改它的状态。我找到了这两个帮助我的例子:
那就是通过visualTreeHelper和obj.FindName找到按钮。
如果您想要从ViewModel更改VisualState,您应该创建附加属性,这两个站点将帮助您:
答案 1 :(得分:0)
您可以使用下面提到的代码
VisualStateManager.GoToState(this, "PlayersTurn", false);