private void metroVentas_Click(object sender, EventArgs e) { FormVentas misVentas = new FormVentas(); this.Hide(); misVentas.FormClosed += (s, args) => this.Close(); misVentas.Show(); misVentas.Focus(); }
private void btnVentas_Click(object sender, EventArgs e) { FormVentas misVentas = new FormVentas(); misVentas.Show(); }