简体   繁体   English

为Windows 8.1商店应用中的文本框控制禁用Windows平板电脑键盘上的自动补全功能?

[英]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 我想在使用文本框时停止Windows 8.1 Store应用程序的平板电脑键盘提供自动完成选项

Is there a way to set this? 有办法设置吗?

If you are talking about the suggestions then you need to add this to the xaml of the Textbox 如果您在谈论建议,则需要将其添加到文本框的xaml中

IsTextPredictionEnabled="False"

Giving this result : 给出这个结果:

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

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM