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

就像没有动画被附加到指定的依赖属性一样的属性值。

实现

示例

以下示例实现一个处理程序,该处理程序报告动画属性的Button基值Width以及转换的基值。

// 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 返回值相同。 如果附加了动画,则忽略所有可能的动画派生值,包括开始值和停止值,并且根据所有其他可能的输入确定属性值。 有关详细信息,请参阅依赖属性值优先级

适用于

另请参阅