SplinePointKeyFrame 建構函式

定義

初始化 SplinePointKeyFrame 類別的新執行個體。

多載

SplinePointKeyFrame()

初始化 SplinePointKeyFrame 類別的新執行個體。

SplinePointKeyFrame(Point)

使用指定的結束值,初始化 SplinePointKeyFrame 類別的新執行個體。

SplinePointKeyFrame(Point, KeyTime)

使用指定結束值和 Key Time,初始化 SplinePointKeyFrame 類別的新執行個體。

SplinePointKeyFrame(Point, KeyTime, KeySpline)

使用指定的結束值、關鍵時間和 SplinePointKeyFrame,初始化 KeySpline 類別的新執行個體。

SplinePointKeyFrame()

初始化 SplinePointKeyFrame 類別的新執行個體。

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

適用於

SplinePointKeyFrame(Point)

使用指定的結束值,初始化 SplinePointKeyFrame 類別的新執行個體。

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

參數

value
Point

主要畫面的結束值 (也稱為「目標值」)。

適用於

SplinePointKeyFrame(Point, KeyTime)

使用指定結束值和 Key Time,初始化 SplinePointKeyFrame 類別的新執行個體。

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

參數

value
Point

主要畫面的結束值 (也稱為「目標值」)。

keyTime
KeyTime

主要畫面的 Key Time。 Key Time 決定何時到達目標值,這也是主要畫面格的結束時間。

適用於

SplinePointKeyFrame(Point, KeyTime, KeySpline)

使用指定的結束值、關鍵時間和 SplinePointKeyFrame,初始化 KeySpline 類別的新執行個體。

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

參數

value
Point

主要畫面的結束值 (也稱為「目標值」)。

keyTime
KeyTime

主要畫面的 Key Time。 Key Time 決定何時到達目標值,這也是主要畫面格的結束時間。

keySpline
KeySpline

主要畫面格的 KeySplineKeySpline 表示貝茲曲線,用來定義主要畫面格的動畫進度。

適用於