Example #1
0
        public void buttonRemed_Click(object sender, EventArgs e)
        {
            FormCadastroRemedio formCadastroRemedio = new FormCadastroRemedio();
            TelaLogn            telaLogn            = new TelaLogn();

            telaLogn.Show();

            if ((telaLogn.Visible == false))
            {
                formCadastroRemedio.Show();
            }
        }
Example #2
0
        private void buttonBrinquedos_Click(object sender, EventArgs e)
        {
            FormCadastroAcessorio formCadastroAcessorio = new FormCadastroAcessorio();
            TelaLogn telaLogn = new TelaLogn();

            telaLogn.Show();

            if (telaLogn.Visible == false)
            {
                formCadastroAcessorio.Show();
            }
        }
Example #3
0
        private void buttonAlimentos_Click(object sender, EventArgs e)
        {
            FormCadastroAlimento formCadastroAlimento = new FormCadastroAlimento();
            TelaLogn             telaLogn             = new TelaLogn();

            telaLogn.Show();

            if (telaLogn.Visible == false)
            {
                formCadastroAlimento.Show();
            }
        }