Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

HyperlinkButton's UIA properties are announced in an unexpected order #2987

Closed
YuliKl opened this issue Jul 24, 2020 · 1 comment
Closed
Labels
accessibility Narrator, keyboarding, UIA, etc area-HyperlinkButton needs-winui-3 Indicates that feature can only be done in WinUI 3.0 or beyond. (needs winui 3) no-issue-activity team-Controls Issue for the Controls team

Comments

@YuliKl
Copy link

YuliKl commented Jul 24, 2020

Describe the bug

The order of information in Narrator is expected to be: "Name LocalizedControlType Value..."
So in the below markup, Narrator should announce "More Link" and "More Button". This is true for the Button control but HyperlinkButton gets announced in the opposite order: "Link More"

            <HyperlinkButton
                AutomationProperties.Name="More"            
                Margin="12,0,0,0"
                Padding="0">
                <TextBlock
                    Grid.Column="0"
                    Text="Click"/>
            </HyperlinkButton>

            <Button
                AutomationProperties.Name="More"
                Margin="12,0,0,0"
                Padding="0">
                <TextBlock
                    Grid.Column="0"
                    Text="Click"/>
            </Button>

Additional context

Issue found through internal bugs

@YuliKl YuliKl added the accessibility Narrator, keyboarding, UIA, etc label Jul 24, 2020
@msft-github-bot msft-github-bot added the needs-triage Issue needs to be triaged by the area owners label Jul 24, 2020
@StephenLPeters StephenLPeters added team-Controls Issue for the Controls team needs-winui-3 Indicates that feature can only be done in WinUI 3.0 or beyond. (needs winui 3) area-HyperlinkButton and removed needs-triage Issue needs to be triaged by the area owners labels Jul 27, 2020
@github-actions
Copy link

This issue is stale because it has been open 180 days with no activity. Remove stale label or comment or this will be closed in 5 days.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
accessibility Narrator, keyboarding, UIA, etc area-HyperlinkButton needs-winui-3 Indicates that feature can only be done in WinUI 3.0 or beyond. (needs winui 3) no-issue-activity team-Controls Issue for the Controls team
Projects
None yet
Development

No branches or pull requests

3 participants