コード例 #1
0
 public DetallesPerfil(int IdCandidato, VerPerfiles v)
 {
     InitializeComponent();
     this.IdCandidato = IdCandidato;
     this.v = v;
 }
コード例 #2
0
 private void button4_Click(object sender, EventArgs e)
 {
     VerPerfiles vp = new VerPerfiles();
     vp.MdiParent = this.MdiParent;
     vp.Show();
     this.Dispose();
 }
コード例 #3
0
ファイル: Inicio.cs プロジェクト: unscharf/Gestion-de-casting
 private void perfilesToolStripMenuItem_Click(object sender, EventArgs e)
 {
     VerPerfiles vp = new VerPerfiles();
     vp.MdiParent = this;
     vp.Show();
 }