适用于 WP7 的 AutoCompleteBox 和 AutoSelect!

发布于 2024-11-04 19:32:01 字数 263 浏览 0 评论 0原文

我想知道如何在 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

辞慾 2024-11-11 19:32:01

这就是自动完成框在其他地方的工作原理。如果不这样工作,用户将会感到困惑。

如果您不想要这个,为什么还要使用 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?

沫离伤花 2024-11-11 19:32:01

通过在自动完成框的列表框的事件 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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文