次の方法で共有


AutomationProperties.HeadingLevelProperty プロパティ

定義

UI オートメーション要素の見出しレベルを示す HeadingLevel 添付プロパティの識別子を取得します。

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 メソッドによって返されます。

適用対象

こちらもご覧ください