user3772515
user3772515

Reputation: 169

Disable autocompletion on windows tablet keyboard for textbox control in a Windows 8.1 store app?

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

Answers (1)

micbobo
micbobo

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

Related Questions