为 Windows 8.1 商店应用中的文本框控件禁用 windows 平板电脑键盘上的自动完成功能?

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

我想停止我的 Windows 8.1 Store 应用程序的平板电脑键盘在使用文本框时提供自动完成选项

有办法设置吗?

如果您是在谈论建议,那么您需要将其添加到文本框的 xaml

IsTextPredictionEnabled="False"

给出这个结果:

<TextBox x:Name="txtExample"                                
       Style="{StaticResource TextBoxStyles}"
       IsTextPredictionEnabled="False"/>