/// <summary>
 /// Initializes a new instance of the AnimationValueAdapter type.
 /// </summary>
 /// <param name="dimension">The dimension of interest for updates.</param>
 public AnimationValueAdapter(DoubleAnimationDimension dimension)
 {
     Dimension = dimension;
 }
 /// <summary>
 /// Initializes a new instance of the DoubleAnimationToAdapter type.
 /// </summary>
 /// <param name="dimension">The dimension of interest.</param>
 /// <param name="instance">The instance of the animation type.</param>
 public DoubleAnimationToAdapter(DoubleAnimationDimension dimension, DoubleAnimation instance)
     : base(dimension, instance)
 {
 }
示例#3
0
 /// <summary>
 /// Initializes a new instance of the DoubleAnimationFrameAdapter
 /// type.
 /// </summary>
 /// <param name="dimension">The dimension of interest.</param>
 /// <param name="frame">The instance of the animation type.</param>
 public DoubleAnimationFrameAdapter(DoubleAnimationDimension dimension, DoubleKeyFrame frame)
     : base(dimension, frame)
 {
 }