使用多个过滤列表框自定义 Silverlight AutoCompleteBox
我应该如何在 Silverlight 中自定义 AutoCompleteBox,以便在键入时可以过滤多个选择器列表框。基本上我想要一个包含“n”个垂直堆叠的列表框的弹出窗口,当我键入时,过滤会同时对所有列表框进行操作。然后我可以从任何列表框中选择一个项目。
预先感谢您提供的任何指导。
贝克斯
How should I go about customising the AutoCompleteBox in Silverlight so that while typing I can filter multiple Selector ListBoxes. Basically I want a Popup that contains 'n' ListBoxes vertically stacked and when I type, the filtering operates on all of them simultaneously. I can then select an item from any of the ListBoxes.
Thanks in advance for any guidance you may have.
Beks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
最后不得不使用自定义控件,继承自 Control。我创建的控件包含一个文本框和弹出窗口,其中包含多个列表框,当我在文本框中键入时,这些列表框会更新。
Had to go with a custom control in the end, inheriting from Control. The control I created contains a textbox and popup that contains multiple listboxes that are updated as i type in the text box.