Проблема в начале ColorAnimation для GradientStop в VisualState - PullRequest
0 голосов
/ 27 марта 2011

У меня очень странная проблема с ColorAnimation. То, что я хочу сделать, довольно просто (я думаю): у меня есть Rectangle с GradientBrush в качестве фона. Этот прямоугольник имеет разные визуальные состояния, которые меняют цвета градиента. Я хочу поставить анимацию для перехода между состояниями. Моя проблема в том, что когда я меняю состояние, анимация начинается не с текущего цвета, а с цвета по умолчанию.

Вот фрагмент кода, который может помочь вам воспроизвести это:

<Window x:Class="TestColorAnimation.Window1"
    xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
    Title="Window1" Height="350" Width="525">

<Grid>
    <Grid.RowDefinitions>
        <RowDefinition />
        <RowDefinition Height="30" />
    </Grid.RowDefinitions>
    <Grid.ColumnDefinitions>
        <ColumnDefinition Width="*" />
        <ColumnDefinition Width="*" />
    </Grid.ColumnDefinitions>

    <Rectangle Grid.Row="0" Grid.Column="0" Grid.ColumnSpan="2" x:Name="rect">
        <VisualStateManager.VisualStateGroups>
            <VisualStateGroup>
                <VisualStateGroup.Transitions>
                    <VisualTransition GeneratedDuration="0:0:0.5"/>
                </VisualStateGroup.Transitions>
                <VisualState x:Name="OrangeState">
                    <Storyboard>
                        <ColorAnimation Storyboard.TargetProperty="Color"
                                        Storyboard.TargetName="stop1"
                                        To="Orange" />
                    </Storyboard>
                </VisualState>
                <VisualState x:Name="RedState">
                    <Storyboard>
                        <ColorAnimation Storyboard.TargetProperty="Color"
                                        Storyboard.TargetName="stop1"
                                        To="Red" />
                    </Storyboard>
                </VisualState>
            </VisualStateGroup>
        </VisualStateManager.VisualStateGroups>
        <Rectangle.Fill>
            <LinearGradientBrush EndPoint="0.5,1" StartPoint="0.5,0">
                <GradientStop x:Name="stop1" Color="LightGray" Offset="0" />
                <GradientStop x:Name="stop2" Color="LightGray" Offset="1" />
            </LinearGradientBrush>
        </Rectangle.Fill>
    </Rectangle>

    <Button Grid.Row="1" Grid.Column="0" Content="Go to orange"
     x:Name="orangeButton" Click="orangeButton_Click" />
    <Button Grid.Row="1" Grid.Column="1" Content="Go to red"
     x:Name="redButton" Click="redButton_Click" />
</Grid>
</Window>

Обработчики событий просто вызывают изменение состояния:

private void orangeButton_Click(object sender, RoutedEventArgs e)
{
    VisualStateManager.GoToElementState(this.rect, "OrangeState", true);
}

private void redButton_Click(object sender, RoutedEventArgs e)
{
    VisualStateManager.GoToElementState(this.rect, "RedState", true);
}

В этом случае, если я перехожу в оранжевое состояние, анимация меняется с серого на оранжевый. Но затем, когда я перехожу в красное состояние, анимация переходит от серого к красному. Я хотел бы (и ожидал), чтобы он изменился с оранжевого на красный.

Я попытался использовать SolidColorBrush вместо LinearGradientBrush, и переходы происходят, как и ожидалось. Я также попытался использовать раскадровки за пределами VisualStates (но с LinearGradientBrush), и это также работает, как и ожидалось. Единственная ситуация, в которой я воспроизвел эту проблему, - это пример: LinearGradientBrush и ColorAnimation в VisualState.

Я что-то не так делаю? Возможно ли то, что я хочу?

1 Ответ

1 голос
/ 27 марта 2011

Анимация LinearGradients будет работать, если вы измените цель на GradientStop Color напрямую:

<VisualState x:Name="OrangeState">
    <Storyboard>
        <ColorAnimation 
            Storyboard.TargetProperty = "(Rectangle.Fill).(LinearGradientBrush.GradientStops)[0].(GradientStop.Color)"
            Storyboard.TargetName="rect"
            To="Orange" />
    </Storyboard>
</VisualState>
<VisualState x:Name="RedState">
    <Storyboard>
        <ColorAnimation 
            Storyboard.TargetProperty = "(Rectangle.Fill).(LinearGradientBrush.GradientStops)[0].(GradientStop.Color)"
            Storyboard.TargetName="rect"
            To="Red" />
    </Storyboard>
</VisualState>
...