private void button3_Click(object sender, EventArgs e)
 {
     VerCandidatos v = new VerCandidatos();
     v.MdiParent = this.MdiParent;
     v.Show();
     this.Dispose();
 }
 public DetallesCandidato(int ID, VerCandidatos V)
 {
     InitializeComponent();
     this.ID = ID;
     this.V= V;
     comboBox1.SelectedIndex = 0;
 }
        public GuardarRepresentantes(int Id, VerCandidatos Cand)
        {
            InitializeComponent();
            this.Id = Id;
            this.Cand = Cand;

        }
Esempio n. 4
0
 private void verTodosToolStripMenuItem2_Click(object sender, EventArgs e)
 {
     VerCandidatos v = new VerCandidatos();
     v.MdiParent = this;
     v.Show();
 }