private void button1_Click(object sender, RoutedEventArgs e) { aEnviar = textBox1.Text; MensajeChat men = new MensajeChat(aEnviar); scrollViewer1.Content = ad; ad.Children.Add(men); textBox1.Text = null; }
private void ReciveMensajeDispatcher(string mensaje) { MensajeChat men = new MensajeChat(mensaje); scrollViewer1.Content = ad; BitmapImage bi3 = new BitmapImage(); bi3.BeginInit(); bi3.UriSource = new Uri(pathAvatar, UriKind.Relative); bi3.EndInit(); men.image1.Stretch = Stretch.Fill; try { men.image1.Source = BitmapFrame.Create(bi3); } catch { } ad.Children.Add(men); textBox1.Text = null; }