I'm playing with the WPF animation and faced some wired problem.
I have a Slider and a TextBox. TextBox is binded to Slider.Value using 2-way binding:
<StackPanel>
<Slider x:Name="MySlider" Minimum="0" Maximum="100" Value="50" />
<TextBox Text="{Binding ElementName=MySlider, Path=Value, Mode=TwoWay}" />
<Button Click="Button_Click">Test</Button>
</StackPanel>
When I drag slider, text in textbox changes. When I change text in textbox, value of slider is updated, it works correctly.
Now I add an animation, which animates Slider.Value property to 0. I start it on button press.
private void Button_Click(object sender, RoutedEventArgs e)
{
Storyboard storyBoard = new Storyboard();
DoubleAnimation animation = new DoubleAnimation();
animation.Duration = new Duration(TimeSpan.FromSeconds(0.5));
animation.To = 0;
Storyboard.SetTarget(animation, MySlider);
Storyboard.SetTargetProperty(animation, new PropertyPath(Slider.ValueProperty));
storyBoard.Children.Add(animation);
storyBoard.Begin();
}
When I press button, animation scrolls Slider to 0. TextBox is also changes to 0 syncronyously woth slider.
And now I faces the problem. After animation I can not change text in textbox. I change text, move focus, and text with slider value resets to 0. I still can move slider, and textbox updates with slider value. But I can't set slider value using textbox.
I think when animation stops, value somehow freezes on a value , specified in animation.To property, but I can't figure how to unfreeze it. Or may be it is something else?
Thank you