Windows Phone 7 TextBox doesn't allow type space

241 Views Asked by At

I have the next XAML code:

<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>

I can't type the space after words. How I can turn off spelling auto correction in my application?

1

There are 1 best solutions below

1
On

For your second question - simply change the InputScopeName NameValue-parameter to "AddressStreet" - that should remove autocorrection for you. Have a look at the overview over different inputscopes here.

As for your space issue, I think that should resolve itself automatically from the change in input. if not, post some of your code-behind code to give us more information to work at.