我正在尝试使用WPF。我正在尝试将ComboBox
绑定到List<MyClass>
,其中MyClass
是用户定义的类。我想设置ComboBox的SelectedValuePath
属性,以便ComboBox项的值表示MyClass
的对象。
我尝试将SelectedValuePath
属性设置为.
和this
,但没有运气。任何人都可以建议我实现它的方法吗?
示例代码:
Class MyClass
{
public int ID {get; set;}
public string Name {get; set;}
}
List<MyClass> lst = new List<MyClass>();
ComboBox cmb = new ComboBox();
cmb.DataContext = lst;
cmb.DisplayMemberPath = "Name";
// Here I want object of MyClass (which is bound to this item) itself should be assigned as value.
cmb.SelectedValuePath = "????";
答案 0 :(得分:0)
使用cmb.SelectedItem
而不是返回一个对象,将其强制转换为MyClass
并且根本不设置SelectedValuePath