我想在ComboBoxEdit中显示数据; 例如,我有一个包含
的模型public class Foo
{
public long Id{get ; set ;}
public string FirstName {get ; set ;}
public string LastName{get ; set ;}
public string Town {get ; set ;}
}
我有一个observableCollection,其中包含该模型的许多行。 在视图中,我想显示一个ComboBoxEdit,它也显示了带有ColumnFilter的FirstName和LastName。还有什么可以用?
欢迎所有例子。
答案 0 :(得分:1)
改为使用LookUpEdit:
while(die.getDie1() != 6 || die.getDie2() != 6 || ...){
答案 1 :(得分:0)
你可以在对象上覆盖ToString()函数,并且当组件(不仅是组合框)想要使用对象的描述然后使用ToString()
public class Foo
{
public long Id { get; set; }
public string FirstName { get; set; }
public string LastName { get; set; }
public string Town { get; set; }
public override string ToString()
{
string ret = FirstName + " " + LastName;
return ret;
}
}
如果您没有其他意思,请写下更多详情。