Reputation: 169
I would like to stop my Windows 8.1 Store application's tablet keyboard from providing an autocompletion option when using a textbox
Is there a way to set this?
Upvotes: 1
Views: 427
Reputation: 872
If you are talking about the suggestions then you need to add this to the xaml of the Textbox
IsTextPredictionEnabled="False"
Giving this result :
<TextBox x:Name="txtExample"
Style="{StaticResource TextBoxStyles}"
IsTextPredictionEnabled="False"/>
Upvotes: 2