private void BtnCliente_Click(object sender, EventArgs e) { this.Close(); FrmTienda frmTienda = new FrmTienda(); frmTienda.Show(); }
private void timer2_Tick(object sender, EventArgs e) { this.Opacity -= 0.05; if (this.Opacity == 0) { timer2.Stop(); this.Close(); FrmTienda frmTienda = new FrmTienda(); frmTienda.Show(); } }