需要 silverlight 控件显示多选选项
我有一个 Silverlight 应用程序。
我想要一种向用户显示多选选项的方法,并且正在考虑是否有一些可以开箱即用的东西。
我认为一种方法是创建一个自定义控件 - 多选组合框。 有更好的方法吗?
问候, 巴维克
I have an Silverlight application.
I wanted a way to show multiselect options to users and was thinking if we had something which I can use out of the box.
One way of doing it, I thought was creating a custom control - Multi-Select combo box.
Any better ways of doing it?
Regards,
Bhavik
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以将数据放入标准列表框中并设置 SelectionMode="Multiple",也许一次只显示一个项目,并在侧面有一个按钮控制可见项目的高度。像这样:
XAML:
C#:
you could put your data in a standard ListBox and set SelectionMode="Multiple", maybe only show one item at a time, and have a button on the side control the height of your visible items. like this:
XAML:
C#: