this.messages.Add(new TextMessage()
{
Author = new Author() { Name = "Margaret", Avatar = ImageSource.FromUri(new Uri("http://lorempixel.com/1920/1080/sports/7/")) },
Text = "What kind of application is it and when are we going to launch?",
}); |
public Author senderUser;
public Author SenderUser
{
get
{
return this.senderUser;
}
set
{
this.senderUser = value;
OnPropertyChanged();
}
}
this.SenderUser.Avatar = AvatarImg