LinearInt64KeyFrame 构造函数

定义

初始化 LinearInt64KeyFrame 类的新实例。

重载

名称 说明
LinearInt64KeyFrame()

初始化 LinearInt64KeyFrame 类的新实例。

LinearInt64KeyFrame(Int64)

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

LinearInt64KeyFrame(Int64, KeyTime)

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

LinearInt64KeyFrame()

初始化 LinearInt64KeyFrame 类的新实例。

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

适用于

LinearInt64KeyFrame(Int64)

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

public:
 LinearInt64KeyFrame(long value);
public LinearInt64KeyFrame(long value);
new System.Windows.Media.Animation.LinearInt64KeyFrame : int64 -> System.Windows.Media.Animation.LinearInt64KeyFrame
Public Sub New (value As Long)

参数

value
Int64

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

适用于

LinearInt64KeyFrame(Int64, KeyTime)

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

public:
 LinearInt64KeyFrame(long value, System::Windows::Media::Animation::KeyTime keyTime);
public LinearInt64KeyFrame(long value, System.Windows.Media.Animation.KeyTime keyTime);
new System.Windows.Media.Animation.LinearInt64KeyFrame : int64 * System.Windows.Media.Animation.KeyTime -> System.Windows.Media.Animation.LinearInt64KeyFrame
Public Sub New (value As Long, keyTime As KeyTime)

参数

value
Int64

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

keyTime
KeyTime

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

适用于