Microsoft ナレーターに問題があります。
次のような WPF フラグメントがあります。
<Window
x:Class="InlineEditbox.Window1"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
Title="Narrator test" SizeToContent="WidthAndHeight">
<TextBlock>
<Run xml:space="preserve">I want to pay </Run>
<InlineUIContainer>
<TextBox Width="70" HorizontalContentAlignment="Right">0</TextBox>
</InlineUIContainer>
<Run xml:space="preserve"> % more</Run>
</TextBlock>
</Window>
テキストは正しく表示されます。ただし、ナレーターは、予想される「0パーセント多く支払いたい」ではなく、「0パーセント多く支払いたい」と読みます。
私は何か間違ったことをしていますか?その結果、ナレーターはテキスト全体を読むことができたはずです。実際のテキストを変更せずに問題を回避する方法はありますか?