PointAnimation 构造函数
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
初始化 PointAnimation 类的新实例。
重载
PointAnimation() |
初始化 PointAnimation 类的新实例。 |
PointAnimation(Point, Duration) |
初始化 PointAnimation 类的新实例,该类在指定的持续时间内对指定值进行动画处理。 动画的起始值是正在进行动画处理的属性的基值或来自另一个动画的输出。 |
PointAnimation(Point, Duration, FillBehavior) |
初始化 PointAnimation 类的新实例,该类在指定的持续时间内将动画处理至指定的值,并具有指定的填充行为。 动画的起始值是正在进行动画处理的属性的基值或来自另一个动画的输出。 |
PointAnimation(Point, Point, Duration) |
初始化 PointAnimation 类的新实例,其在指定的持续时间内从指定的起始值到指定的目标值之间进行绘制动画。 |
PointAnimation(Point, Point, Duration, FillBehavior) |
初始化 PointAnimation 类的新实例,该类在指定的持续时间内从指定的起始值到指定的目标值之间进行动画处理,并具有指定的填充行为。 |
PointAnimation()
PointAnimation(Point, Duration)
初始化 PointAnimation 类的新实例,该类在指定的持续时间内对指定值进行动画处理。 动画的起始值是正在进行动画处理的属性的基值或来自另一个动画的输出。
public:
PointAnimation(System::Windows::Point toValue, System::Windows::Duration duration);
public PointAnimation (System.Windows.Point toValue, System.Windows.Duration duration);
new System.Windows.Media.Animation.PointAnimation : System.Windows.Point * System.Windows.Duration -> System.Windows.Media.Animation.PointAnimation
Public Sub New (toValue As Point, duration As Duration)
参数
- toValue
- Point
动画的目标值。
适用于
PointAnimation(Point, Duration, FillBehavior)
初始化 PointAnimation 类的新实例,该类在指定的持续时间内将动画处理至指定的值,并具有指定的填充行为。 动画的起始值是正在进行动画处理的属性的基值或来自另一个动画的输出。
public:
PointAnimation(System::Windows::Point toValue, System::Windows::Duration duration, System::Windows::Media::Animation::FillBehavior fillBehavior);
public PointAnimation (System.Windows.Point toValue, System.Windows.Duration duration, System.Windows.Media.Animation.FillBehavior fillBehavior);
new System.Windows.Media.Animation.PointAnimation : System.Windows.Point * System.Windows.Duration * System.Windows.Media.Animation.FillBehavior -> System.Windows.Media.Animation.PointAnimation
Public Sub New (toValue As Point, duration As Duration, fillBehavior As FillBehavior)
参数
- toValue
- Point
动画的目标值。
- fillBehavior
- FillBehavior
指定动画不处于活动状态时的行为。
适用于
PointAnimation(Point, Point, Duration)
初始化 PointAnimation 类的新实例,其在指定的持续时间内从指定的起始值到指定的目标值之间进行绘制动画。
public:
PointAnimation(System::Windows::Point fromValue, System::Windows::Point toValue, System::Windows::Duration duration);
public PointAnimation (System.Windows.Point fromValue, System.Windows.Point toValue, System.Windows.Duration duration);
new System.Windows.Media.Animation.PointAnimation : System.Windows.Point * System.Windows.Point * System.Windows.Duration -> System.Windows.Media.Animation.PointAnimation
Public Sub New (fromValue As Point, toValue As Point, duration As Duration)
参数
- fromValue
- Point
动画的起始值。
- toValue
- Point
动画的目标值。
适用于
PointAnimation(Point, Point, Duration, FillBehavior)
初始化 PointAnimation 类的新实例,该类在指定的持续时间内从指定的起始值到指定的目标值之间进行动画处理,并具有指定的填充行为。
public:
PointAnimation(System::Windows::Point fromValue, System::Windows::Point toValue, System::Windows::Duration duration, System::Windows::Media::Animation::FillBehavior fillBehavior);
public PointAnimation (System.Windows.Point fromValue, System.Windows.Point toValue, System.Windows.Duration duration, System.Windows.Media.Animation.FillBehavior fillBehavior);
new System.Windows.Media.Animation.PointAnimation : System.Windows.Point * System.Windows.Point * System.Windows.Duration * System.Windows.Media.Animation.FillBehavior -> System.Windows.Media.Animation.PointAnimation
Public Sub New (fromValue As Point, toValue As Point, duration As Duration, fillBehavior As FillBehavior)
参数
- fromValue
- Point
动画的起始值。
- toValue
- Point
动画的目标值。
- fillBehavior
- FillBehavior
指定动画不处于活动状态时的行为。