AutomationProperties.HeadingLevelProperty 属性

定义

获取 HeadingLevel 附加属性的标识符,该属性指示 UI 自动化元素的标题级别。

public:
 static property DependencyProperty ^ HeadingLevelProperty { DependencyProperty ^ get(); };
static DependencyProperty HeadingLevelProperty();
public static DependencyProperty HeadingLevelProperty { get; }
var dependencyProperty = AutomationProperties.headingLevelProperty;
Public Shared ReadOnly Property HeadingLevelProperty As DependencyProperty

属性值

HeadingLevel 附加属性的标识符。

示例

<TextBlock 
    Text="Mouse Options"
    AutomationProperties.HeadingLevel="1"/>
</TextBlock>

<StackPanel AutomationProperties.AutomationName="Description of Content"  AutomationProperties.HeadingLevel="1">
    <!-- content here -->
</StackPanel>
public sealed partial class MainPage : Page
{
    public MainPage()
    {
        this.InitializeComponent();

        AutomationProperties.SetHeadingLevel(this, AutomationHeadingLevel.HeadingLevel3);
    }
}

注解

标题元素组织用户界面,使其更易于导航。 AT) (一些辅助技术允许用户在标题之间快速跳转。 标题的级别为 1 到 9。

标题级别属性值由 GetHeadingLevel 方法返回。

适用于

另请参阅