Ejercicios Visual Studio C# 2: abrir segundo formulario y transferir variables + Proyecto Completo
Muy buenas a todos, nuevo vídeo sobre Visual Studio donde vamos a ver como abrir un segundo formulario y transferir variables entre estos. En la descripción del vídeo podrás encontrar un acceso al proyecto completo con todo el código fuente de forma completamente gratuita.
Si simplemente quieres el código abre este post.
Saludos!
Formulario 1
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Forms;
namespace Dos_Formularios
{
public partial class frm1 : Form
{
public frm1()
{
InitializeComponent();
}
private void btn1_Click(object sender, EventArgs e)
{
frm2 form = new frm2(this);
form.Show();
this.Hide();
}
}
}
Formulario 2
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Forms;
namespace Dos_Formularios
{
public partial class frm2 : Form
{
private Form frm;
public frm2(Form frm_)
{
frm = frm_;
InitializeComponent();
}
private void frm2_FormClosed(object sender, FormClosedEventArgs e)
{
frm.Close();
}
}
}
Comentarios
Publicar un comentario