wpf - RepeatBehavior doesn't work in Expression Blend? -


is me or what? repeatbehavior doesn't seem work animations in expression blend 4. have following animation:

<doubleanimationusingkeyframes storyboard.targetproperty="(uielement.rendertransform).(transformgroup.children)[2].(rotatetransform.angle)"      storyboard.targetname="waitdoc" repeatbehavior="0:0:2">                 <easingdoublekeyframe keytime="0:0:1.0" value="0"/>                 <easingdoublekeyframe keytime="0:0:1.1" value="180"/>                 <easingdoublekeyframe keytime="0:0:1.2" value="360"/> </doubleanimationusingkeyframes> 

i expect animation run 2 seconds, instead runs once when click play button in objects , timeline pane. have tried values 5x too, getting same behavior.

i don't want run entire project test every minute change. play button should play defined. missing here?

edit: in addition, discovered blend doesn't show respect begintime attribute.

try :

  <doubleanimationusingkeyframes                      storyboard.targetproperty="(uielement.rendertransform).(transformgroup.children) [2].(rotatetransform.angle)"  storyboard.targetname="waitdoc" duration="0:0:2" repeatbehavior="forever">             <easingdoublekeyframe keytime="0:0:1.0" value="0"/>             <easingdoublekeyframe keytime="0:0:1.1" value="180"/>             <easingdoublekeyframe keytime="0:0:1.2" value="360"/>   </doubleanimationusingkeyframes> 

Comments

Popular posts from this blog

html - How to style widget with post count different than without post count -

How to remove text and logo OR add Overflow on Android ActionBar using AppCompat on API 8? -

javascript - storing input from prompt in array and displaying the array -