Пример #1
0
 private void CargarBancos()
 {
     this.cboBancos.ItemsSource       = _ventaBl.ObtenerBancos();
     this.cboBancos.DisplayMemberPath = "Nombre";
     this.cboBancos.SelectedValuePath = "Id";
     this.cboBancos.SelectedIndex     = 0;
 }