1.ComboBox的前台绑定
ComboBox使用SelectedValuePath(SelectedValuePath="DutyId"):获取或设置用于获取 SelectedItem (总经理,如图2)属性的 SelectedValue属性的属性路径(当选择SelectedItem项时,SelectedValue返回的值(DutyId))。
ComboBox使用DisplayMemberPath(DisplayMemberPath="DutyCaption"):DisplayMemberPath 设置为显示的文档的名称.
2.后台
得到所有DUTY表的实体集合AllDuty;
this.ComboBox1.itemsSource=allDuty;//显示的效果如图2;
3.当点击TreeView或DataGrid时,将实体的相应部门信息显示在ComboBox中,如何设置呢?
this.ComboBox1.SelectedIndex=0;
this.ComboBox1.SelectedItem=(allDuty.where(x=>x.DutyId==Entity.FatherId).SingleOrDefault());
显示如图: