Exemplo n.º 1
0
 private void FecharPonto_Tick(object sender, EventArgs e)
 {
     gpbCont.Height -= 15;
     if (gpbCont.Height <= 0)
     {
         gpbCont.Height = 0;
         AbrirPonto.Stop();
     }
 }
Exemplo n.º 2
0
 private void AbrirPonto_Tick(object sender, EventArgs e)
 {
     gpbCont.Height += 15;
     if (gpbCont.Height >= 158)
     {
         gpbCont.Height = 157;
         AbrirPonto.Stop();
     }
 }
Exemplo n.º 3
0
        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();
            }
        }