DataGridComboBoxColumn 动态绑定
我有一个带有组合框列的数据网格。我想将此列绑定到我在代码隐藏文件中动态生成的项目列表。数据网格的所有行在组合框列中都将具有相同的项目列表。我已经使用 ObjectDataProvider 完成了静态绑定,但我不确定如何动态地执行此操作。
非常感谢任何帮助!
谢谢你, 桑托什
I have a datagrid with a combobox column. I want to bind this column to a list of items that I generate dynamically in the code-behind file. All rows of the datagrid will have the same list of items in the combobox column. I have done static binding using ObjectDataProvider, but I am not sure how to do this dynamically.
Any help is greatly appreciated!
Thank you,
Santosh
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以使用
ObservableCollection
对于您的项目,如果您随后将 DataGrid 的ItemsSource
绑定到此集合,您可以动态地将项目添加到集合中,并且它们也将添加到 DataGrid 中。有关详细信息,请参阅 MSDN 上的集合绑定部分。如果这不是您正在寻找的内容,您可能需要详细说明,因为您的问题似乎仍然很不清楚(至少对我来说)。You can use an
ObservableCollection<T>
for your items, if you then bind theItemsSource
of the DataGrid to this collection you can dynamically items to the collection and they will also be added to the DataGrid. See the collections binding section on MSDN for more info. If this is not what you are looking for you might want to elaborate as your question still seems quite unclear (at least to me).