Silverlight:在数据表单中使用集合作为多个选项?
我有一个运行良好的数据表单。我的数据对象的属性之一是 ObservableCollection。现在,在数据表单中,它仅显示集合的 ToString()
。不是很有帮助。
我想要某种带有有效选项的自动完成框,当用户选择它们时,它们将被添加到数据对象的集合中。 (我在这个问题中讨论了这样做,但它不使用数据表单。)
有没有办法在使用数据表单自动生成的其余控件的同时执行此操作?我宁愿不自己指定所有内容,只是为了控制这一点。
我还想覆盖字段的普通文本输入框,使其成为自动完成框。
I have a data form that is working pretty well. One of the properties of my data object is an ObservableCollection
. Right now, in the data form, it only displays the ToString()
of the colletion. Not very helpful.
I'd like some sort of autocomplete box with valid options, and when the user selects them they will be added to the data object's collection. (I discussed doing that in this question, but it's not using data forms.)
Is there a way to do this, while using the rest of the controls automatically generated by the data form? I'd rather not specify everything myself, just to get this one control.
I'd also like to override a normal text input box for a field to make it an autocomplete box.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您需要绑定到集合中对象的公共属性。
You need to bind to a public property of the object in the collection.