Skip to main content
Filter by
Sorted by
Tagged with
0 votes
0 answers
46 views

I want to check if Windows narrator is enabled in UWP. Is there any event which I can subscribe to get narrator event? Alternatively is it possible to check if narrator is enabled? I tried to find if ...
Sumnoon's user avatar
  • 145
0 votes
0 answers
67 views

Narrator is not reading the TextBlock inside a UserControl: <UserControl.Template> <ControlTemplate> <TextBlock Text="Test text" Focusable="True" ...
meJustAndrew's user avatar
  • 6,759
1 vote
0 answers
389 views

I have a form progress component which is made up of a simple unordered list but Narrator with Chrome announces it incorrectly as a heading level 1 whereas Edge doesn't. Codepen here: https://codepen....
tay's user avatar
  • 158
0 votes
1 answer
182 views

In my WPF application, there is a grid view with three columns as Name, City, and Country. Please see the model class: public class Employee { public string Name { get; set; } public string ...
Vignesh VS's user avatar
3 votes
1 answer
642 views

I am writing a WPF (.net 5) application which should support accessibility specifically windows narrator to read out the screen text. I am using few TextBlocks and expect that as soon as window is ...
Amit's user avatar
  • 31
1 vote
0 answers
125 views

How to Access CustomText in Xamarin.forms? I'm trying to access narrator by referring https://learn.microsoft.com/en-us/learn/modules/narrator-and-voice-input/2-audio-descriptions-with-narrator. I'm ...
Rasika Palanisamy's user avatar
0 votes
0 answers
409 views

I'm having an issue with Windows Narrator on Edge where if I have a combo box (dropdown) inside a panel (modal), opening combo box starts announcing title of the tab. This issue is specific to Edge ...
Lalit Umbarkar's user avatar
1 vote
0 answers
386 views

Highcharts.chart('container',{ chart: { //renderTo: document.getElementById("container"), type: 'column' }, ...
Kanika Pasrija's user avatar
0 votes
0 answers
741 views

I'm currently developing a web app with react. For that I used react-circular-progressbar library and component look as follows. When I use narrator for screen reading it will says as image, some ...
Amith Dissanayaka's user avatar
1 vote
2 answers
1k views

Windows Narrator doesn't read legend tag inside fieldset. At the same time legend is read by NVDA and JAWS properly. Markup is the following: <fieldset> <legend>Description</legend&...
Oleh Khitrin's user avatar
1 vote
0 answers
493 views

In my case i have to decide whether the narrator is running or not. I am using below line of code to check narrator is running . var isNarratorStarted = AutomationPeer.ListenerExists(AutomationEvents....
sridhar patro's user avatar
1 vote
1 answer
297 views

I faced a strange issue when trying to support both keyboard and Narrator accessibility. In the following XAML code: <StackPanel> <CheckBox Name="CheckBox" ...
romaneo's user avatar
  • 33
0 votes
1 answer
177 views

I have the following polymer element, that inherits the "paper-behaviors/paper-button-behavior" but doesn´t provide any kind of auditive feedback when the user clicks the button. it just reads the ...
Yala Yala Herzlin's user avatar
0 votes
1 answer
902 views

I have a radio button and a on top of it. When the narrator focus is on the radio button it just reads the value of radio button. But I want it to read the text value of the also. [Code and UI ...
Sagar Samal's user avatar
1 vote
2 answers
4k views

I am using radio button group in my application and it has 3 possible values. Whenever user is selecting a value, screen reader is reading "1 of 1" instead of "1 of 3". I also ...
alok_dida's user avatar
  • 1,743
0 votes
0 answers
161 views

<Grid Name="Simple Grid" > <Button AutomationProperties.Name="Simple Button" Name="Button" AutomationProperties.AccessibilityView="Control" AutomationProperties.HelpText="Help text for ...
user avatar
0 votes
1 answer
2k views

Earlier the angular application app worked fine. Some changes are done in core files, that is, grand-parent html tags, now the Narrator reads out for div element: "No item in view" The changes ...
Manohar Reddy Poreddy's user avatar
2 votes
1 answer
125 views

I am working on an XBOX app that is UWP javascript driven. I need to access the systems narrator settings, but have not found any options. Does anybody know of a way to access this information, or ...
dev_pool's user avatar
  • 203
1 vote
2 answers
359 views

Are there any attributes or is there a way to indicate that two sections are a continuation of each other. Example below: <section id="section-top"> <div>Item 1 </div> <...
Gema Beltran's user avatar
1 vote
1 answer
292 views

I am writing a script in VBS for when I log in I am greeted with the time. However, the XML variable for voice pitch is not functioning without text that is static. Am I missing something? Sapi.speak ...
Eternal_Dusk's user avatar
1 vote
0 answers
387 views

I have a listbox which uses the datatemplate to generate a list of checkboxes. The issue is when using the keyboard , the focus moves twice over the item. Once because of the list item and next for ...
shreya shetty's user avatar
1 vote
1 answer
1k views

I have a TextBlock with dynamic data (Timer). The Text property is updated once per second. The narrator sometimes (not always) reads the text twice in scan mode, because it have two properties with ...
Vladimir Bolshakov's user avatar
2 votes
0 answers
843 views

In my UWP app I have TextBlock: <TextBlock Text="Text0" AutomationProperties.Name="Text1" /> The Narrator reads only the Text properties in the scan mode ignoring ...
Vladimir Bolshakov's user avatar
1 vote
1 answer
2k views

I have an input box. Based on UP and DOWN arrow keypress, I want narrator to read values from a list which is a sibling element of this input box, i.e. on pressing DOWN, the narrator should read the ...
PG1's user avatar
  • 1,242
1 vote
1 answer
778 views

I have many Custom and UserControl in my app. For DialogContent the Narrator reads only inside the control using key combination "Caps Lock" + "Arrow", but for the CustomControl and UserControl the ...
Vladimir Bolshakov's user avatar