我有一个 Lisbox,我在其中制作了一个 ItemsTemplate,在这个 itemTemplate 中我有一个想要更改视觉状态的元素,问题是我不知道如何更改状态。这是我到目前为止所得到的。
<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 设计,我找到了这个解决方案,但我不知道“b”的命名空间,因此 d 不知道知道如何获得“VisualStateSettingBehavior”。
更新 我已经将我的 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 我有风格:
<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 使其变黄。