UIElement.GetAnimationBaseValue(DependencyProperty) Yöntem

Tanım

Bu öğede belirtilen özelliğin temel özellik değerini döndürür ve çalışan veya durdurulan animasyondaki olası animasyonlu değerleri göz ardı eder.

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

Parametreler

dp
DependencyProperty

Denetlenecek bağımlılık özelliği.

Döndürülenler

Object

Belirtilen bağımlılık özelliğine hiçbir animasyon eklenmemiş gibi özellik değeri.

Uygulamalar

Örnekler

Aşağıdaki örnek, bir üzerindeki animasyonlu Width özelliğin temel değerini ve dönüşümün Buttontemel değerini bildiren bir işleyici uygular.

// 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

Açıklamalar

Özelliğe hiçbir animasyon eklenmemişse, GetAnimationBaseValue dönüş değeri her zaman dönüş değeriyle GetValue aynıdır. Eklenmiş animasyonlar varsa, başlangıç ve durdurma değerleri de dahil olmak üzere tüm olası animasyon türetilmiş değerleri yoksayılır ve özellik değeri diğer tüm olası girişlere göre belirlenir. Daha fazla bilgi için bkz . Bağımlılık Özelliği Değer Önceliği.

Şunlara uygulanır

Ayrıca bkz.