Trouble Animating Transforms in GroupTransform

后端 未结 1 1245
伪装坚强ぢ
伪装坚强ぢ 2021-02-14 16:48

I have an image of a fish in a WPF project (VB.net code behind), and I\'m attempting to animate it swimming back and forth using two transforms.

For some reason, while

1条回答
  •  野趣味
    野趣味 (楼主)
    2021-02-14 17:17

    Those property paths are all wrong, but i would vote for just avoiding the whole trouble of only using those paths by utilizing Storyboard.TargetName; this works:

    
    
        
        
    
      
        
            
                
                
                
                
            
            
                
                
                
                
                
            
        
    

    If you really want to do it using Storyboard.TargetProperty only, these would be the correct paths as i found out just now:

    Storyboard.TargetProperty="RenderTransform.Children[0].ScaleX"
    Storyboard.TargetProperty="RenderTransform.Children[1].X"
    

    Which does make perfect sense if you think about it.

    0 讨论(0)
提交回复
热议问题