适用于 WP7 的 AutoCompleteBox 和 AutoSelect!
我想知道如何在 WP7 的 AutoCompleteBox 中禁用当单词与 itemsource 之一相等时的自动选择。
示例:
ItemSource:
Test
Test 1
Test 2
Test 3
现在,如果我写“测试”自动完成框会自动选择第一项。我该如何禁用它?
“AutoCompleteBox.IsTextCompletionEnabled = false”不做我想要的。
谢谢!
i would like to know how can disable in AutoCompleteBox for WP7 the autoselect when a word is equal with one of the itemsource.
Example:
ItemSource:
Test
Test 1
Test 2
Test 3
Now if i write "Test" autocompletebox automatically select the first item.. how can i disable this?
"AutoCompleteBox.IsTextCompletionEnabled = false" don't make what i want.
Thanks!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
这就是自动完成框在其他地方的工作原理。如果不这样工作,用户将会感到困惑。
如果您不想要这个,为什么还要使用 AutoCompleteBox?
如果用户完全输入一个项目,您希望发生什么?
That's how an autocomplete box works everywhere else. It will be confusing for users if it doesn't work like this.
Why are you using an AutoCompleteBox if you don't want this?
What would you want to happen if the user completely enters an item?
通过在自动完成框的列表框的事件 MouseLeftButtonDown 上设置变量“ListboxChecked = TRUE”并检查 SelectionChanged 是否该变量为 TRUE 来解决。
Solved with set a variable "ListboxChecked = TRUE" on the event MouseLeftButtonDown of the listbox of autocompletebox and check on SelectionChanged if the variable is TRUE.