This question is locked. New answers and comments are not allowed.
Hello,
I can't animate IsIndeterminate property on a RadProgressBar. I have a custom control with a ProgressBar in it. The custom control has severals VisualState and I want to change the IsIndeterminate property according to the state of the control.
Here is my code :
I have tried with "TargetProperty="IsIndeterminate", but doesn't working neither. Can you help me ?
Thanks
I can't animate IsIndeterminate property on a RadProgressBar. I have a custom control with a ProgressBar in it. The custom control has severals VisualState and I want to change the IsIndeterminate property according to the state of the control.
Here is my code :
<VisualState x:Name="InProgress"> <Storyboard> <ObjectAnimationUsingKeyFrames Storyboard.TargetName="progressbar_Status" Storyboard.TargetProperty="(RadProgressBar.IsIndeterminate)" BeginTime="0:0:0"> <DiscreteObjectKeyFrame KeyTime="0:0:0" Value="True" /> </ObjectAnimationUsingKeyFrames> </Storyboard></VisualState>I have tried with "TargetProperty="IsIndeterminate", but doesn't working neither. Can you help me ?
Thanks
