AutomationProperties.HeadingLevel 附加属性

定义

获取或设置 UI 自动化元素的标题级别。

see GetHeadingLevel, and SetHeadingLevel
see GetHeadingLevel, and SetHeadingLevel
see GetHeadingLevel, and SetHeadingLevel

示例

<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 方法返回。

适用于

另请参阅