码迷,mamicode.com
首页 > Windows程序 > 详细

Wpf ComboBox 绑定关联对象列表 与实体对象中的相关ID列绑定的方式

时间:2020-10-18 09:27:29      阅读:32      评论:0      收藏:0      [点我收藏+]

标签:rgba   col   ber   combobox   rop   vat   play   string   hang   

1.ViewModel对象

public class DocumentAddUpdateViewModel : INotifyPropertyChanged
{

  public event PropertyChangedEventHandler PropertyChanged;

  public ObservableCollection<Department> AllDepartments { get; set; }

  public Person Person{get;set;}

}

public class Person{

  public String DepartmentId{get;set;}

}

在界面的类中

private DocumentAddUpdateViewModel  viewModel = new DocumentAddUpdateViewModel ();

viewModel.AllDepartments = departmentService.GetAll();

最关键的是xaml中的绑定

<ComboBox
  SelectedValue="{Binding Path=Person.DepartmentId}" /*1.这个用来绑定到对象的字段*/
  ItemsSource="{Binding Path=AllDepartments}"  /*2.用来绑定列表*/
  DisplayMemberPath="ShowName" /*3.绑定时用来显示的列*/
  SelectedValuePath="Id" /*4.这个是AllDepartments里的id,与3是一对*/
Width="250"
Height="30"
Style="{DynamicResource FormComboBoxStyle}" />

Wpf ComboBox 绑定关联对象列表 与实体对象中的相关ID列绑定的方式

标签:rgba   col   ber   combobox   rop   vat   play   string   hang   

原文地址:https://www.cnblogs.com/hh8527/p/13829848.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!