Ver Mensaje Individual
  #5 (permalink)  
Antiguo 31/08/2009, 06:02
chcma
 
Fecha de Ingreso: junio-2003
Ubicación: Asturias
Mensajes: 2.429
Antigüedad: 21 años, 7 meses
Puntos: 7
Respuesta: Actualiar control, segun propiedad de la ventana

Bueno... se uqe no es la mejor opción, pero, como también tenia que poner un texto, según cambiase la propiedad... al final, opté por hacer esto:

Código:
        private void UserConversation_PropertyChanged(object sender, System.ComponentModel.PropertyChangedEventArgs e)
        {

            string statusUser = this.UserConversation.StatusOnLine ? "Conectado" : "Desconectado";

            this.txtReceived.Dispatcher.Invoke((Action)delegate { this.txtReceived.Text += string.Format("Usuario {0} está {1}.", this.UserConversation.Email, statusUser) + "\r\n"; });
            this.txtSend.Dispatcher.Invoke((Action)delegate { this.txtSend.IsEnabled = this.UserConversation.StatusOnLine; });
        }
Ya lo sé !!! Es muy triste que no lo haya conseguido através de WPF, pero bueno... lo segundo más optimo que se me ocurría era esto... (Espero opniones y sugerencias, jejeje)

Salu2
__________________
Charlie.