Exemple #1
0
 private void EstablecerEstadoConexion()
 {
     if (tEstadoConexion == null)
     {
         tEstadoConexion = new Thread(new ThreadStart(EstadoConexionThread));
         tEstadoConexion.Start();
         bThreadActivado = true;
     }
     HelperView.EstablecerEstadoConexion(btEstadoConexion, this.eEstadoConexion);
 }
Exemple #2
0
 private void EstablecerEstiloMensaje()
 {
     if (String.IsNullOrEmpty(this.lbMensaje.Text))
     {
         HelperView.SetDefaultMessageStyle(this.lbMensaje);
     }
     else
     {
         HelperView.SetMessageStyle(this.lbMensaje);
     }
 }