示例#1
0
 public static double GetTime(DoubleAnimation animation)
 {
     return((double)animation.GetValue(TimeProperty));
 }
示例#2
0
 public static Thickness GetTo(DoubleAnimation animation)
 {
     return((Thickness)animation.GetValue(ToProperty));
 }
示例#3
0
 public static Thickness GetFrom(DoubleAnimation animation)
 {
     return((Thickness)animation.GetValue(FromProperty));
 }
示例#4
0
 public static double GetDynamicDuration(DoubleAnimation animation)
 {
     return((double)animation.GetValue(DynamicDurationProperty));
 }