Ejemplo n.º 1
0
        private void BtnCliente_Click(object sender, EventArgs e)
        {
            this.Close();
            FrmTienda frmTienda = new FrmTienda();

            frmTienda.Show();
        }
Ejemplo n.º 2
0
 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();
     }
 }