private void pictureBox4_Click(object sender, EventArgs e) { try { if (DataBase.Entity.UsuarioLogadoModel.login.tp_hierarquia != "gerente") { throw new ArgumentException("Usuário não possui permissões necessárias para acessar este modulo"); } if (gpbFuncionarios.Height == 0) { FecharFuncionario.Stop(); AbrirFuncionario.Start(); } if (gpbFuncionarios.Height > 0) { AbrirFuncionario.Stop(); FecharFuncionario.Start(); } } catch (ArgumentException ex) { MessageBox.Show(ex.Message); } Image img = pcbFuncionario.Image; img.RotateFlip(RotateFlipType.Rotate180FlipNone); pcbFuncionario.Image = img; }
private void timer6_Tick(object sender, EventArgs e) { gpbFuncionarios.Height -= 15; if (gpbFuncionarios.Height <= 0) { gpbFuncionarios.Height = 0; AbrirFuncionario.Stop(); } }
private void timer5_Tick(object sender, EventArgs e) { gpbFuncionarios.Height += 15; if (gpbFuncionarios.Height >= 158) { gpbFuncionarios.Height = 157; AbrirFuncionario.Stop(); } }