private void txtRegistrarProveedor_Click(object sender, EventArgs e) { PantallaInventario pp = new PantallaInventario(); pp.Show(); this.Hide(); }
private void checkBox1_CheckedChanged(object sender, EventArgs e) { PantallaInventario pi = new PantallaInventario(); pi.LlenarTablaInventarioTelevisor(dataGridView1); if (checkBox1.Checked == false) { pi.LlenarTablaInventario(dataGridView1); } }
private void PantallaInventario_Load(object sender, EventArgs e) { PantallaInventario pi = new PantallaInventario(); pi.LlenarTablaInventario(dataGridView1); }