AutomationProperties.HeadingLevelProperty 屬性
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
取得 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 方法傳回。