简短而简单的问题。在 Winforms 中,您可以简单地将数据视图绑定到组合框或其他控件:
combobox.DataSource = dataview
combobox.DisplayMember = "Something"
在 WPF 中,我通常使用 ObservableCollection 完成数据绑定并编辑 xaml。有没有办法像上面那样快速做到这一点?
编辑:这似乎是我能想到的最简单/最快的事情,它本身有什么问题吗?
combobox.ItemSource = dataview
combobox.DisplayMemberPath = "Something"