private void btn_nuevo_mail_ItemClick(object sender, DevExpress.XtraBars.ItemClickEventArgs e)
        {
            try
            {
                FrmMain = new Frm_Redactar_Email();
                FrmMain.StartPosition = FormStartPosition.CenterScreen;
                FrmMain.ShowDialog();
                //event_btn_nuevo_mail_ItemClick(sender, e);

                uC_Buzon_Salida.mostrar_mensajes(eTipoMail.Buzon_Sal, 1, cuentaCorreo);
                uC_Buzon_Salida.UCRedactarMail_Event_Correo_generado();
            }

            catch (Exception ex)
            {
                MessageBox.Show(ex.Message.ToString());
                BusSisLog.Log_Error(ex.Message.ToString(), eTipoError.ERROR, this.ToString());
            }
        }
        private void Llamar_form_redactar_mail(mail_Mensaje_Info InfoMail)
        {
            try
            {
                Info.Asunto = "RE:" + Info.Asunto;
                Info.Asunto_texto_mostrado = "RE:" + Info.Asunto_texto_mostrado;

                Frm_Redactar_Email ofrm = new Frm_Redactar_Email();
                ofrm.set_label_buton_enviar("Reenviar");
                ofrm.set(Info);
                ofrm.ShowDialog();

                btn_Refresh_Click(null, null);
            }
            catch (Exception ex)
            {
                MessageBox.Show(ex.Message.ToString());
                BusSisLog.Log_Error(ex.Message.ToString(), eTipoError.ERROR, this.ToString());
            }
        }