Exemple #1
0
        private void mostrarToolStripMenuItem_Click(object sender, EventArgs e)
        {
            frmMostrar           = new FrmMostrar();
            frmMostrar.MdiParent = this;

            frmTestDelegados.EventoActualizar += frmMostrar.ActualizarNombre;
            frmMostrar.Show();
        }
Exemple #2
0
        private void mostrarToolStripMenuItem_Click(object sender, EventArgs e)
        {
            this.frmMostrar = new FrmMostrar();

            this.frmMostrar.MdiParent = this;


            this.frmMostrar.Show();

            this.frmTestDelegados.ActualizarNombre += this.frmMostrar.ActualizarNombre;
            this.frmTestDelegados.ActualizarFoto   += this.frmMostrar.ActualizarFoto;
        }