UIElement.GetAnimationBaseValue(DependencyProperty) メソッド

定義

この要素の、指定したプロパティの基本プロパティ値を返します。実行中または停止済みのアニメーションでアニメーション化される値は無視されます。

public:
 virtual System::Object ^ GetAnimationBaseValue(System::Windows::DependencyProperty ^ dp);
public object GetAnimationBaseValue (System.Windows.DependencyProperty dp);
abstract member GetAnimationBaseValue : System.Windows.DependencyProperty -> obj
override this.GetAnimationBaseValue : System.Windows.DependencyProperty -> obj
Public Function GetAnimationBaseValue (dp As DependencyProperty) As Object

パラメーター

dp
DependencyProperty

照合する対象の依存関係プロパティ。

戻り値

Object

指定した依存関係プロパティにアニメーションが添付されていないような場合のプロパティ値。

実装

次の例では、アニメーション化された Width プロパティ Buttonの基本値と変換の基本値を報告するハンドラーを実装します。

// Display the base value for Button.Width and RotateTransform.Angle.
private void animatedButton_Clicked(object sender, RoutedEventArgs e)
{
    Button animatedButton = (Button)sender;
    MessageBox.Show("Button width base value: " + 
        animatedButton.GetAnimationBaseValue(Button.WidthProperty)
        + "\nRotateTransform base value: " +
        animatedRotateTransform.GetAnimationBaseValue(RotateTransform.AngleProperty));
}
' Display the base value for Button.Width and RotateTransform.Angle.
Private Sub animatedButton_Clicked(ByVal sender As Object, ByVal e As RoutedEventArgs)
    Dim animatedButton As Button = CType(sender, Button)
    MessageBox.Show("Button width base value: " & animatedButton.GetAnimationBaseValue(Button.WidthProperty).ToString & vbLf & "RotateTransform base value: " & animatedRotateTransform.GetAnimationBaseValue(RotateTransform.AngleProperty).ToString)
End Sub

注釈

プロパティにアニメーションがアタッチされていない場合、 GetAnimationBaseValue 戻り値は常に戻り値と GetValue 同じです。 アニメーションがアタッチされている場合、開始値と停止値を含むすべてのアニメーション派生値は無視され、プロパティ値は他のすべての入力に基づいて決定されます。 詳細については、「依存関係プロパティ値の優先順位」を参照してください。

適用対象

こちらもご覧ください