EasingVectorKeyFrame 构造函数

定义

初始化 EasingVectorKeyFrame 类的新实例。

重载

名称 说明
EasingVectorKeyFrame()

初始化 EasingVectorKeyFrame 类的新实例。

EasingVectorKeyFrame(Vector)

使用指定的EasingVectorKeyFrame值初始化类的新实例Vector

EasingVectorKeyFrame(Vector, KeyTime)

使用指定的EasingVectorKeyFrame值和键时间初始化类的新实例Vector

EasingVectorKeyFrame(Vector, KeyTime, IEasingFunction)

使用指定的EasingVectorKeyFrame值、键时间和缓动函数初始化类的新实例Vector

EasingVectorKeyFrame()

初始化 EasingVectorKeyFrame 类的新实例。

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

另请参阅

适用于

EasingVectorKeyFrame(Vector)

使用指定的EasingVectorKeyFrame值初始化类的新实例Vector

public:
 EasingVectorKeyFrame(System::Windows::Vector value);
public EasingVectorKeyFrame(System.Windows.Vector value);
new System.Windows.Media.Animation.EasingVectorKeyFrame : System.Windows.Vector -> System.Windows.Media.Animation.EasingVectorKeyFrame
Public Sub New (value As Vector)

参数

value
Vector

初始 Vector 值。

另请参阅

适用于

EasingVectorKeyFrame(Vector, KeyTime)

使用指定的EasingVectorKeyFrame值和键时间初始化类的新实例Vector

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

参数

value
Vector

初始 Vector 值。

keyTime
KeyTime

初始关键时间。

另请参阅

适用于

EasingVectorKeyFrame(Vector, KeyTime, IEasingFunction)

使用指定的EasingVectorKeyFrame值、键时间和缓动函数初始化类的新实例Vector

public:
 EasingVectorKeyFrame(System::Windows::Vector value, System::Windows::Media::Animation::KeyTime keyTime, System::Windows::Media::Animation::IEasingFunction ^ easingFunction);
public EasingVectorKeyFrame(System.Windows.Vector value, System.Windows.Media.Animation.KeyTime keyTime, System.Windows.Media.Animation.IEasingFunction easingFunction);
new System.Windows.Media.Animation.EasingVectorKeyFrame : System.Windows.Vector * System.Windows.Media.Animation.KeyTime * System.Windows.Media.Animation.IEasingFunction -> System.Windows.Media.Animation.EasingVectorKeyFrame
Public Sub New (value As Vector, keyTime As KeyTime, easingFunction As IEasingFunction)

参数

value
Vector

初始 Vector 值。

keyTime
KeyTime

初始关键时间。

easingFunction
IEasingFunction

缓动函数。

另请参阅

适用于