private bool ValidaFormulario()
        {
            var temp = "";

            if (Txt_Descricao.Text == "")
            {
                temp += "Verifique a Descrição do Tipo Estabelecimento \r\n";
                Grp_TipoEstabelecimento.AlterarBordaComponente(Txt_Descricao, Color.Red);
            }
            else
            {
                Grp_TipoEstabelecimento.AlterarBordaComponente(Txt_Descricao, Color.Green);
            }
            if (Txt_Descricao.Text.Length > 50)
            {
                temp += "Tamonho máximo de descrição 50 caracteres.";
                Grp_TipoEstabelecimento.AlterarBordaComponente(Txt_Descricao, Color.Red);
            }
            else
            {
                Grp_TipoEstabelecimento.AlterarBordaComponente(Txt_Descricao, Color.Green);
            }
            if (temp != "")
            {
                MessageBox.Show(temp, "Cadastro Tipo Estabelecimento.", MessageBoxButtons.OK, MessageBoxIcon.Error);
                return(false);
            }
            return(true);
        }
 private void LimparFormulario()
 {
     Txt_Descricao.Text    = "";
     Txt_Codigo.Text       = "";
     Txt_Descricao.Enabled = false;
     Btn_Editar.Enabled    = false;
     Btn_Excluir.Enabled   = false;
     Btn_Novo.Enabled      = true;
     Btn_Gravar.Enabled    = false;
     Grp_TipoEstabelecimento.AlterarBordaComponente(Txt_Descricao, Grp_TipoEstabelecimento.BackColor);
 }
 private void Txt_Descricao_TextChanged(object sender, EventArgs e)
 {
     if (Txt_Descricao.Text.Length > 0)
     {
         Grp_TipoEstabelecimento.AlterarBordaComponente(Txt_Descricao, Color.Green);
     }
     else
     {
         Grp_TipoEstabelecimento.AlterarBordaComponente(Txt_Descricao, Color.Red);
     }
 }