private void AbrirProdutos_Tick(object sender, EventArgs e) { gpbProdutos.Height += 15; if (gpbProdutos.Height >= 158) { gpbProdutos.Height = 157; AbrirProdutos.Stop(); } }
private void FecharProdutos_Tick(object sender, EventArgs e) { gpbProdutos.Height -= 15; if (gpbProdutos.Height <= 0) { gpbProdutos.Height = 0; AbrirProdutos.Stop(); } }
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(); } }