Exemplo n.º 1
0
 private void _btnOriginTopLeft_MouseRelease(object sender, MouseButtonActionInfo info)
 {
     if (CurrentAnimation == null)
     {
         return;
     }
     CurrentAnimation.SetOriginAllFrames(Origin.TopLeft);
 }
Exemplo n.º 2
0
 private void _btnOriginBottomMiddle_MouseRelease(object sender, MouseButtonActionInfo info)
 {
     if (CurrentAnimation == null)
     {
         return;
     }
     CurrentAnimation.SetOriginAllFrames(Origin.MiddleBottom);
 }