我有一个WPF应用程序,部分要求是可以访问的,包括键盘导航和屏幕阅读器。
通过在Treeview的ItemContainerStyle中设置AutomationProperties.Name,我在应用程序中使用Treeview取得了一些成功,但是对于包含文本区域和一些按钮的Window,我遇到了问题。
ZoomText会正确读出窗口的标题,但是要读出两次,以及按钮中的文本,但是我无法读出它来读取TextBlock的内容。
文本块在如下窗口中定义。调试时,Visual Studio输出中没有显示绑定(bind)错误,并且NVDA屏幕阅读器可以正确读取内容,尽管这对我来说还不够好,因为客户使用的是ZoomText。
<Window x:Class="UserControls.ModalDialog"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
mc:Ignorable="d"
d:DesignHeight="160" d:DesignWidth="400" MinHeight="85" MinWidth="400" MaxWidth="400" SizeToContent="Height" Height="Auto"
WindowStartupLocation="CenterScreen" ResizeMode="NoResize" Title="{Binding TitleText }">
<DockPanel Width="Auto" Margin="20,20,0,10">
<StackPanel Orientation="Vertical">
<StackPanel Orientation="Horizontal">
<TextBlock Text="{Binding Path=DialogText, Mode=TwoWay}" Cursor="Arrow" Focusable="True" TextWrapping="WrapWithOverflow"
Height="Auto" Width="325" TextOptions.TextFormattingMode="Display"
ToolTip="{Binding Path=Text, RelativeSource={RelativeSource Self}}"
AutomationProperties.Name="{Binding Path=Text, RelativeSource={RelativeSource Self}}"
AutomationProperties.AutomationId="{Binding Path=Text, RelativeSource={RelativeSource Self}}">
</TextBlock>
</StackPanel>
<StackPanel Orientation="Horizontal" HorizontalAlignment="Right" Margin="0,10,5,0">
<Button Content="{Binding Path=Option1ButtonText, Mode=TwoWay}" Padding="5,0,5,0" Margin="0,20,5,0" MinWidth="100" IsDefault="True" Command="{Binding Path=Option1ButtonCommand, Mode=TwoWay}" />
<Button Content="{Binding Path=Option2ButtonText, Mode=TwoWay}" Padding="5,0,5,0" Margin="2,20,10,0" MinWidth="75" Command="{Binding Path=Option2ButtonCommand, Mode=TwoWay}" Visibility="{Binding Option2ButtonVisibility, Mode=TwoWay}"/>
<Button Content="{Binding Path=CancelButtonText, Mode=TwoWay}" Padding="5,0,5,0" Margin="2,20,10,0" MinWidth="75" IsCancel="True" Visibility="{Binding CancelButtonVisibility, Mode=TwoWay}"/>
</StackPanel>
</StackPanel>
</DockPanel>
如果有人在WPF和Screen阅读器方面取得了成功,并且有任何见识,或者可以向我指出正确的方向,那就太好了。
更新:
看来问题是因为TextBlock在另一个元素内。如果窗口将TextBlock作为唯一元素,则屏幕阅读器会正确读取文本。但是,我需要使用Dock和Stack Panel进行布局,因此当TextBlock不是窗口中唯一的内容时,我需要找到一种使Screen Reader正常工作的方法。
最佳答案
您可以使用Automation Properties几乎完成所需的一切
例如;
有关用法的更多详细信息,请参见文档。现在考虑到投票的数量,这并没有得到解决,这有点令人惊讶。无论哪种方式,希望对您有所帮助。干杯!
关于c# - 使WPF App可访问屏幕阅读器,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/25157400/