示例#1
0
 public frmTestDelegados()
 {
     InitializeComponent();
     this.StartPosition    = FormStartPosition.CenterParent;
     this.frmDatos         = new FrmDatos();
     this.eventoDelegados += new TestDelegados(this.frmDatos.ActualizarNombre);
 }
 private void mostrarToolStripMenuItem_Click(object sender, EventArgs e)
 {
     this.frmDatos  = new FrmDatos();
     frmDatos.Owner = this;
     this.frmDatos.Show();
 }