private void FecharPonto_Tick(object sender, EventArgs e) { gpbCont.Height -= 15; if (gpbCont.Height <= 0) { gpbCont.Height = 0; AbrirPonto.Stop(); } }
private void AbrirPonto_Tick(object sender, EventArgs e) { gpbCont.Height += 15; if (gpbCont.Height >= 158) { gpbCont.Height = 157; AbrirPonto.Stop(); } }
private void pcbControlePonto_Click(object sender, EventArgs e) { Image img = pcbControlePonto.Image; img.RotateFlip(RotateFlipType.Rotate180FlipNone); pcbControlePonto.Image = img; if (gpbCont.Height == 0) { FecharPonto.Stop(); AbrirPonto.Start(); } if (gpbCont.Height == 157) { AbrirPonto.Stop(); FecharPonto.Start(); } }