public void buttonRemed_Click(object sender, EventArgs e) { FormCadastroRemedio formCadastroRemedio = new FormCadastroRemedio(); TelaLogn telaLogn = new TelaLogn(); telaLogn.Show(); if ((telaLogn.Visible == false)) { formCadastroRemedio.Show(); } }
private void buttonBrinquedos_Click(object sender, EventArgs e) { FormCadastroAcessorio formCadastroAcessorio = new FormCadastroAcessorio(); TelaLogn telaLogn = new TelaLogn(); telaLogn.Show(); if (telaLogn.Visible == false) { formCadastroAcessorio.Show(); } }
private void buttonAlimentos_Click(object sender, EventArgs e) { FormCadastroAlimento formCadastroAlimento = new FormCadastroAlimento(); TelaLogn telaLogn = new TelaLogn(); telaLogn.Show(); if (telaLogn.Visible == false) { formCadastroAlimento.Show(); } }