gpt4 book ai didi

c# - 使屏幕阅读器可以访问 WPF 应用程序

转载 作者:IT王子 更新时间:2023-10-29 04:39:50 25 4
gpt4 key购买 nike

我有一个 WPF 应用程序,部分要求是它可以访问,包括键盘导航和屏幕阅读器。

通过在 Treeview 的 ItemContainerStyle 中设置 AutomationProperties.Name,我在应用程序中使用 Treeview 取得了一些成功,但我在使用包含文本区域和一些按钮的 Window 时遇到了问题。

ZoomText 将正确读出窗口的标题,但会读出两次,以及按钮中的文本,但我无法让它读取 TextBlock 的内容。

文本 block 在窗口中定义如下。调试时 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 和屏幕阅读器方面取得了成功并且有任何见解,或者可以为我指明正确的方向,那就太好了。

更新:

问题似乎是因为 TextBlock 在另一个元素中。如果窗口具有 TextBlock 作为唯一元素,则屏幕阅读器可以正确读取文本。但是我需要 Dock 和 Stack 面板进行布局,所以我需要找到一种方法让屏幕阅读器在 TextBlock 不是窗口中唯一的内容时工作。

最佳答案

您可以使用 Automation Properties 完成几乎所有您需要的事情

例如;

有关使用的更多详细信息,请参阅文档。考虑到投票的数量,现在还没有回答这个问题,这有点令人惊讶。无论哪种方式,希望这会有所帮助。干杯!

关于c# - 使屏幕阅读器可以访问 WPF 应用程序,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/25157400/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com