private void frmAgregarCandidatos_Load(object sender, EventArgs e) { videoDevices = new FilterInfoCollection(FilterCategory.VideoInputDevice); foreach (FilterInfo device in videoDevices) { CamarasDetectadas.Add(device.Name); } if (CamarasDetectadas.Count > 0) { videoSource = new VideoCaptureDevice(); btnTomarFoto.Enabled = true; } else { btnTomarFoto.Enabled = false; } cmbMunicipio.DataSource = ListarMunicipios.Municipios(true); cmbMunicipio.DisplayMember = "sNombre"; cmbMunicipio.ValueMember = "pkMunicipio"; }
public void LoadData() { this.dtgMunicipio.DataSource = ListarMunicipios.Municipios(true); }