public void fillDataGrid()
        {
            _VoluntariosLN voluntarios = new _VoluntariosLN();

            datagdVoluntarios.ItemsSource = voluntarios.Obtener_V();
        }
Exemple #2
0
 private void fillCboxNombre(_VoluntariosLN Voluntarios)
 {
     cbxVoluntario.ItemsSource       = Voluntarios.Obtener_V();
     cbxVoluntario.SelectedValuePath = "idVoluntarios";
     cbxVoluntario.DisplayMemberPath = "nombres";
 }