WPF:将值绑定到 GridViewColumn 内的 ComboBox 时出现问题
我的视图 dataContext 绑定到具有两个 observableCollections 成员的presentationModel。 在视图中,我有一个 listView,其 ItemSource 绑定到是第一个 observableCollection。 在 LilstViews 列之一中,我想显示presentationModel 中第二个可观察集合的值。 我不知道如何将 observableCollection 中的值获取到我的组合框中。 有谁知道如何解决这个问题?
My Views dataContext is bounded to a presentationModel with two observableCollections Members. In the View I have one listView which ItemSource is bound to is the first observableCollection. In one of the LilstViews column I want to present values from the second obeservable Colletion in my presentationModel. I cant figure out how to get the values from the observableCollection into my combobox. Does anyone have an idea how to solve this problem?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您需要做的第一件事是创建一个包含 ComboBox 的数据模板,在本例中,我已将 ItemsSource 绑定到主机窗口上的 DependencyProperty。 它包含表示模型,它有一个名为 ComboSource 的属性。 SelectedValue 已通过 ListViewItem 的 DataContext 绑定到保存所选值的属性。
然后您需要从 GridViewColumn 上的 CellTemplate 引用它
First thing you need to do is create a data template containing your ComboBox, in this case I have bound the ItemsSource to a DependencyProperty on the host Window. This contains the presentation model, which has a property called ComboSource. SelectedValue has been bound, via the ListViewItem's DataContext, to a property which holds the selected value.
Then you will need to reference this from the CellTemplate on the GridViewColumn