0

我有下一个 XAML 代码:

<ControlTemplate x:Key="PollAnswerRadioTextTemplate" TargetType="RadioButton">
            <StackPanel Width="400" Margin="20,5,5,30">
                <StackPanel>
                    <RadioButton 
                                 IsChecked="{Binding IsChecked}" 
                                 Click="RadioButton_Click"  
                                 CommandParameter="{Binding PControlName}" 
                                 GroupName="Answer" 
                                 Width="400">

                        <RadioButton.Content>
                            <TextBlock TextWrapping="Wrap" Text="{Binding PAvalue}"></TextBlock>
                        </RadioButton.Content>
                    </RadioButton>
                </StackPanel>
                <StackPanel>
                    <TextBox Width="400" Text="{Binding AnswerValueText}" Tag="{Binding PControlName}" AcceptsReturn="True" >
                        <TextBox.InputScope>
                            <InputScope>
                                <InputScopeName NameValue="Chat"/>
                            </InputScope>
                        </TextBox.InputScope>
                    </TextBox>
                </StackPanel>
            </StackPanel>
        </ControlTemplate>

我无法输入单词后面的空格。如何在我的应用程序中关闭拼写自动更正?

4

1 回答 1

0

对于您的第二个问题 - 只需将 InputScopeName NameValue 参数更改为“AddressStreet” - 这应该会为您删除自动更正。在此处查看不同输入范围的概述。

至于您的空间问题,我认为应该从输入的变化中自动解决。如果没有,请发布您的一些代码隐藏代码,为我们提供更多工作信息。

于 2012-07-31T12:25:24.497 回答