我有与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多”。
难道我做错了什么? 讲述人可能只是阅读。因此整个文本。 有没有办法来解决这个问题,而不需要改变实际的文本?