c# - WinRT Smooth Grid.Column change Animation -


i'm using following code change listview location 1 column another:

<grid.resources>   <storyboard x:name="mystoryboard">     <fadeoutthemeanimation targetname="detailitems" />     <objectanimationusingkeyframes storyboard.targetname="detailitems2"                                    storyboard.targetproperty="(grid.column)">       <discreteobjectkeyframe keytime="0"                               value="1" />     </objectanimationusingkeyframes>   </storyboard> </grid.resources> 

this works, but, there's no animation, changes column. want have sort of translation animation.

thanks!

this can't done changing (grid.column)

what can animate rendertransform property (use translatetransform instance).

animate translatetransform using various keyframes, once animation done, reset translatetransform 0 , change grid.column.


Comments

Popular posts from this blog

Why does Ruby on Rails generate add a blank line to the end of a file? -

keyboard - Smiles and long press feature in Android -

node.js - Bad Request - node js ajax post -