在 Silverlight AutoCompleteBox 中接受多个项目

发布于 2024-10-19 18:01:26 字数 196 浏览 1 评论 0原文

我有一个 Silverlight 4 应用程序。在此应用程序中,我使用 AutoCompleteBox。本质上,我正在尝试创建类似于 StackOverflow 上的“标签”自动完成框的功能。我可以成功让我的 AutoCompleteBox 为第一个项目工作。但是,我不知道如何实现分隔符并使下拉菜单出现在后续项目上。

有人可以帮我吗?

谢谢你!

I have a Silverlight 4 application. In this application I am using the AutoCompleteBox. Essentially, I am trying to create the functionality similar to the "Tags" autocomplete box on StackOverflow. I can successfully get the my AutoCompleteBox working for the first item. However, I do not see how to implement a seperator and make the drop down appear on subsequent items.

Can somebody please help me?

Thank you!

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

九歌凝 2024-10-26 18:01:26

创建一个水平列表框,其中包含自动完成框的列表框项目。

  1. 每当按下空格时,将自动完成框添加到列表框项目源源中,并将焦点放在新的自动完成框上。
  2. 在空的自动完成框中按退格键将删除最后一个自动完成框,并将焦点放在列表中(现在)最后一个自动完成框上。

为了使其更容易,请跳过水平部分,直到功能正常工作为止。设置列表框的 ItemsPanel 样式可能会得到您想要的水平列表框。

Create a horizontal listbox with listboxitems of autocompleteboxes.

  1. Whenever a space is pressed, add a autocompletebox to the listbox itemsource source and focus in on the new autocompletebox.
  2. Pressing backspace in an empty autocompletebox will remove the last autocompletebox and focus in on the (now) last autocompletebox in the list.

To make it easier, skip the horizontal part until you get the functionality working. Styling the ItemsPanel of the listbox will probably get you the horizontal listbox you will want.

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