Пример #1
0
 private void AbrirProdutos_Tick(object sender, EventArgs e)
 {
     gpbProdutos.Height += 15;
     if (gpbProdutos.Height >= 158)
     {
         gpbProdutos.Height = 157;
         AbrirProdutos.Stop();
     }
 }
Пример #2
0
 private void FecharProdutos_Tick(object sender, EventArgs e)
 {
     gpbProdutos.Height -= 15;
     if (gpbProdutos.Height <= 0)
     {
         gpbProdutos.Height = 0;
         AbrirProdutos.Stop();
     }
 }
Пример #3
0
        private void pcbproduto_Click(object sender, EventArgs e)
        {
            Image img = pcbproduto.Image;

            img.RotateFlip(RotateFlipType.Rotate180FlipNone);
            pcbproduto.Image = img;



            if (gpbProdutos.Height == 0)
            {
                FecharProdutos.Stop();
                AbrirProdutos.Start();
            }



            if (gpbProdutos.Height == 157)
            {
                AbrirProdutos.Stop();
                FecharProdutos.Start();
            }
        }