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

TeachingTip is not read by Windows Accessibility Narrator when IsLightDismissEnabled=True #9601

Open
g0g8rz opened this issue May 1, 2024 · 1 comment
Labels
area-TeachingTip bug Something isn't working team-Controls Issue for the Controls team

Comments

@g0g8rz
Copy link

g0g8rz commented May 1, 2024

Describe the bug

With Narrator you can enable "scan" mode which will allow you to read any text on screen for accessibility reasons. If you have a TeachingTip and IsLightDismissEnabled=True, Narrator can not read the text. When the tip is opened, it simply says "Popup Window. Press F6 to go to notification". But you can't navigate through the tip to read the text. This works as expected if IsLightDismissEnabled=False.

Steps to reproduce the bug

Create an application with a Button that has a teaching tip, for example:
XML:

<Button x:Name="MyButton" Click="MyButton_OnClick"> <Button.Resources> <TeachingTip x:Name="Tip" Subtitle="Here is my text to read" Target="{x:Bind MyButton}" IsLightDismissEnabled="True"/> </Button.Resources> </Button>

C# Code-behind Click handler

private void MyButton_OnClick(object sender, RoutedEventArgs e) { Tip.IsOpen = true; }

  1. Run it
  2. Turn on Narrator from Settings > Accessibility > Narrator
  3. Press Caps Lock > Space to enable scan mode
  4. Click the button - You should hear "Popup Window. Press F6 to go to notification"
  5. Press F6 - Nothing happens
  6. Navigate the TeachingTip in scan mode by pressing up and down arrow keys - Nothing happens

Now do the same thing but with IsLightDismissEnabled=False. You'll notice that when you press F6, you are now able to press up/down to navigate between the X button and the text. When the text is highlighted, it will read it out loud. This is the proper behavior that the TeachingTip should have when IsLightDismissEnabled=True.

Expected behavior

User should hear the text read when scanning the TeachingTip with up and down arrows

Screenshots

No response

NuGet package version

WinUI 3 - Windows App SDK 1.5.2: 1.5.240404000

Windows version

Windows 11 (22H2): Build 22621

Additional context

No response

@g0g8rz g0g8rz added the bug Something isn't working label May 1, 2024
@microsoft-github-policy-service microsoft-github-policy-service bot added the needs-triage Issue needs to be triaged by the area owners label May 1, 2024
Copy link

github-actions bot commented May 1, 2024

Hi I'm an AI powered bot that finds similar issues based off the issue title.

Please view the issues below to see if they solve your problem, and if the issue describes your problem please consider closing this one. Thank you!

Open similar issues:

Closed similar issues:

Note: You can give me feedback by thumbs upping or thumbs downing this comment.

@bpulliam bpulliam added area-TeachingTip team-Controls Issue for the Controls team and removed needs-triage Issue needs to be triaged by the area owners labels May 2, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
area-TeachingTip bug Something isn't working team-Controls Issue for the Controls team
Projects
None yet
Development

No branches or pull requests

2 participants