I have 4 classes
Comment Class:
public class comment
{
public string Username { get; set; }
public string Comment { get; set; }
public comment(string _username, string _comment)
{
this.Username = _username;
this.Comment = _comment;
}
}
Pin Class:
public class Pin : PhoneApplicationPage
public List<comment> Comment_List;
public Pin(){
this.Comment_List = new List<comment>();
}
}
Message Page:
public partial class MessagePage : PhoneApplicationPage
{
Pin _Pin;
public MessagePage(Pin _pin)
{
this._Pin = _pin;
}
public void Refresh()
{
this.textbox1.Text = "";
foreach (comment c in this._Pin.List)
{
this.textbox1.Text += c.Username;
}
}
public void function()
{
//Call static function in another class to download new pin info
}
The static function then updates a static class called PinList().
I have an event triggered in PinList() class when Its static List of Pins is updated, How to i address the object that is the current MessagePage to to call a function to update the textbox with the new values in Pin.comments.
i.e. i Have:
public class PinList
{
public ObservableCollection<Pin> list;
public static ObservableCollection<Pin> MainPinList = new ObservableCollection<Pin>();
public event PropertyChangingEventHandler PropertyChanged;
public PinList()
{
list = new ObservableCollection<Pin>();
list.CollectionChanged += listChanged;
((INotifyPropertyChanged)list).PropertyChanged += new PropertyChangedEventHandler(list_Property_Changed);
}
private void list_Property_Changed(object sender, PropertyChangedEventArgs args)
{
//Need to call
//MessagePage.Refresh();
}