SplineInt32KeyFrame 构造函数

定义

初始化 SplineInt32KeyFrame 类的新实例。

重载

SplineInt32KeyFrame()

初始化 SplineInt32KeyFrame 类的新实例。

SplineInt32KeyFrame(Int32)

使用指定的结束值初始化 SplineInt32KeyFrame 类的新实例。

SplineInt32KeyFrame(Int32, KeyTime)

使用指定的结束值和关键时间初始化 SplineInt32KeyFrame 类的新实例。

SplineInt32KeyFrame(Int32, KeyTime, KeySpline)

用指定的结束值、关键时间和 SplineInt32KeyFrame 初始化 KeySpline 类的新实例。

SplineInt32KeyFrame()

初始化 SplineInt32KeyFrame 类的新实例。

public:
 SplineInt32KeyFrame();
public SplineInt32KeyFrame ();
Public Sub New ()

适用于

SplineInt32KeyFrame(Int32)

使用指定的结束值初始化 SplineInt32KeyFrame 类的新实例。

public:
 SplineInt32KeyFrame(int value);
public SplineInt32KeyFrame (int value);
new System.Windows.Media.Animation.SplineInt32KeyFrame : int -> System.Windows.Media.Animation.SplineInt32KeyFrame
Public Sub New (value As Integer)

参数

value
Int32

关键帧的结束值(也称为“目标值”)。

适用于

SplineInt32KeyFrame(Int32, KeyTime)

使用指定的结束值和关键时间初始化 SplineInt32KeyFrame 类的新实例。

public:
 SplineInt32KeyFrame(int value, System::Windows::Media::Animation::KeyTime keyTime);
public SplineInt32KeyFrame (int value, System.Windows.Media.Animation.KeyTime keyTime);
new System.Windows.Media.Animation.SplineInt32KeyFrame : int * System.Windows.Media.Animation.KeyTime -> System.Windows.Media.Animation.SplineInt32KeyFrame
Public Sub New (value As Integer, keyTime As KeyTime)

参数

value
Int32

关键帧的结束值(也称为“目标值”)。

keyTime
KeyTime

关键帧的关键时间。 关键时间确定达到目标值的时间,同时也是关键帧结束的时间。

适用于

SplineInt32KeyFrame(Int32, KeyTime, KeySpline)

用指定的结束值、关键时间和 SplineInt32KeyFrame 初始化 KeySpline 类的新实例。

public:
 SplineInt32KeyFrame(int value, System::Windows::Media::Animation::KeyTime keyTime, System::Windows::Media::Animation::KeySpline ^ keySpline);
public SplineInt32KeyFrame (int value, System.Windows.Media.Animation.KeyTime keyTime, System.Windows.Media.Animation.KeySpline keySpline);
new System.Windows.Media.Animation.SplineInt32KeyFrame : int * System.Windows.Media.Animation.KeyTime * System.Windows.Media.Animation.KeySpline -> System.Windows.Media.Animation.SplineInt32KeyFrame
Public Sub New (value As Integer, keyTime As KeyTime, keySpline As KeySpline)

参数

value
Int32

关键帧的结束值(也称为“目标值”)。

keyTime
KeyTime

关键帧的关键时间。 关键时间确定达到目标值的时间,同时也是关键帧结束的时间。

keySpline
KeySpline

关键帧的 KeySplineKeySpline 表示一条贝塞尔曲线,该曲线定义了关键帧的动画进度。

适用于