Универсальное приложение для Windows - доступность для Canvas не работает - PullRequest
0 голосов
/ 07 февраля 2019
<Grid Name="Simple Grid" >
    <Button AutomationProperties.Name="Simple Button" Name="Button" AutomationProperties.AccessibilityView="Control" AutomationProperties.HelpText="Help text for the button is set from XAML" Content="Button" HorizontalAlignment="Left" Margin="285,228,0,0" VerticalAlignment="Top"/>
    <Canvas AutomationProperties.Name="Simple Border" IsTapEnabled="True" Background="Black" Height="300" IsAccessKeyScope="True" Width="200" AutomationProperties.AccessibilityView="Control" AutomationProperties.HelpText="Help text for the border is set from XAML" HorizontalAlignment="Right"/>
</Grid>

В приведенном выше коде в универсальном приложении Windows тестирование специальных возможностей с использованием «Рассказчика» работает для кнопки, а для Canvas - не работает.Аналогично, он не работает для Windows.UI.Xaml.Controls, таких как Border, Image ..

Как добиться доступности этих элементов управления?

...