private void rdbError_CheckedChanged(object sender, EventArgs e)
 {
     picError.Visible = rdbError.Checked;
     tipoNotif        = StdBETipos.TipoNotificacao.TN_Alerta;
 }
 private void rdbMessage_CheckedChanged(object sender, EventArgs e)
 {
     picWarning.Visible = rdbMessage.Checked;
     tipoNotif          = StdBETipos.TipoNotificacao.TN_Mensagem;
 }
 private void rdbSuccess_CheckedChanged(object sender, EventArgs e)
 {
     picSuccess.Visible = rdbSuccess.Checked;
     tipoNotif          = StdBETipos.TipoNotificacao.TN_Sucesso;
 }
 private void rdbInfo_CheckedChanged(object sender, EventArgs e)
 {
     picMessage.Visible = rdbInfo.Checked;
     tipoNotif          = StdBETipos.TipoNotificacao.TN_Info;
 }