共用方式為


AutomationProperties.HeadingLevel 附加屬性

定義

取得或設定使用者介面自動化專案的標題層級。

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

適用於

另請參閱