public UpdateOrderOfCustomer()
 {
     InitializeComponent();
     CostumerSelectionComboBox.ItemsSource       = CostumerOrderBL.GetAll();
     CostumerSelectionComboBox.DisplayMemberPath = "full_Name";
     IdOrderSelectionComboBox.ItemsSource        = CostumerOrderBL.GetAll();
     IdOrderSelectionComboBox.DisplayMemberPath  = "Id";
 }
コード例 #2
0
 public CustomerOrderList()
 {
     InitializeComponent();
     IdOrderSelectionComboBox.ItemsSource       = CostumerOrderBL.GetAll();
     IdOrderSelectionComboBox.DisplayMemberPath = "Id";
 }