75 questions
0
votes
0
answers
29
views
How to check if narrator is enabled in UWP
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 ...
0
votes
0
answers
32
views
Accessibility Issue: The narrator announces the selected radio button as "non-selected" when the focus moves to the radio button
Working on the Angular 16 reactive form, where we are creating the p-radiobutton dynamically. When the user uses the screen-reader to select a radio button, the JAWS/Narrator announces it as non-...
0
votes
0
answers
55
views
How to make TextBlock inside UserControl readable by Narrator in WPF
Narrator is not reading the TextBlock inside a UserControl:
<UserControl.Template>
<ControlTemplate>
<TextBlock Text="Test text" Focusable="True" ...
0
votes
0
answers
125
views
How to control which text Narrator reads
I need to add some text to what Narrator reads from a Win32 ListView. E.g., besides a listview item's caption, it needs to say the type of the item (the type is defined by the application in this case)...
1
vote
0
answers
355
views
Why does the screen reader Narrator announce an item in an unordered list as heading 1?
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....
1
vote
1
answer
92
views
Making a tkinter window acessible to Windows narrator
I was wondering if i could output something that the windows narrator can use to narrate my tkiner application.
import tkinter as tk
# create root window
root = tk.Tk()
root.title("Test")
...
0
votes
1
answer
169
views
Accessibility narrator reading the model class name instead of grid content of WPF application
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 ...
0
votes
0
answers
106
views
Narrator narrating UI element with `isTabStop=false`
I have one xaml page where there are multiple UI elements are there, and i wanted narrator to pick some UI element and ignore other. So with below code you can, see that I have four Grid Row ...
3
votes
1
answer
631
views
Screen reader not reading TextBlock content in WPF application
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 ...
1
vote
1
answer
1k
views
How to get Narrator to read the text in a WPF Popup?
I've got a WPF application which contains a button. When you press the button, a Popup opens. The Popup contains information about the meeting in question.
With Narrator turned on, the contents of the ...
1
vote
0
answers
125
views
How to Access Narrator Programmatically in Xamarin.forms?
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 ...
-1
votes
1
answer
381
views
UWP - automationProperties.Name in case of a change in value
I have a ListView which is populating the result based on DataTemplate. See the code below
I am raising property changed event in cpp to reflect the same in UI for ResultText field.
But the same value ...
0
votes
0
answers
399
views
Opening ComboBox in Panel, Windows Narrator announces document title
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 ...
0
votes
0
answers
105
views
Make infragistics' XamRichTextEditor visible to a screen reader
I have an accessibility problem with a rich text control in a clients' WPF project.
My client uses the XamRichTextEditor by infragistics, but Microsoft Narrator does not read its contents.
I have ...
1
vote
0
answers
377
views
Accessibility for highcharts having multiple series
Highcharts.chart('container',{
chart: {
//renderTo: document.getElementById("container"),
type: 'column'
},
...