Exemple #1
0
        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";
        }
Exemple #2
0
 public void LoadData()
 {
     this.dtgMunicipio.DataSource = ListarMunicipios.Municipios(true);
 }