RelativePanel.AboveProperty 属性

定义

标识 RelativePanel.Above XAML 附加属性。

public:
 static property DependencyProperty ^ AboveProperty { DependencyProperty ^ get(); };
static DependencyProperty AboveProperty();
public static DependencyProperty AboveProperty { get; }
var dependencyProperty = RelativePanel.aboveProperty;
Public Shared ReadOnly Property AboveProperty As DependencyProperty

属性值

RelativePanel.Above XAML 附加属性的标识符。

示例

// To remove a value, pass null.
Button1.SetValue(RelativePanel.AboveProperty, null);

// To set a value. (Sets Button1 above Button2.)
Button1.SetValue(RelativePanel.AboveProperty, Button2); 

// To get a value. (elementName == "Button2" when set as shown previously.)
string elementName = (string)Button1.GetValue(RelativePanel.AboveProperty);

注解

此属性只是属性系统的标识符,在大多数应用方案中不使用。 在大多数情况下,在 XAML 中设置 RelativePanel.Above XAML 附加属性,不需要此标识符。

若要在代码中访问 RelativePanel.Above 附加属性,可以使用依赖属性系统,调用 GetValueSetValue 并将 RelativePanel.AboveProperty 作为依赖属性标识符传递。 在代码中获取或设置值的另一种方法是使用 GetAboveSetAbove

适用于

另请参阅