I am databinding an object value to a label and it wont refresh.
lblTime.DataBindings.Add(new Binding("Text", AppSettings.Instance.SelectedAuction, "EndDate", false, DataSourceUpdateMode.OnPropertyChanged));
The bind works and using a messagebox, I know the value is changing. I am correctly using the INotifyChanged but it wont work. Changing individual values works, say:
AppSettings.Instance.SelectedAuction.EndDate = ((Auction)lbAuctions.SelectedItem).EndDate;
But I want to replace the whole object, and it wont update:
AppSettings.Instance.SelectedAuction = (Auction)lbAuctions.SelectedItem;
Why is this? I can make individual values refresh but not the object itself...
public Auction SelectedAuction
{
get { return this.selectedAuction; }
set
{
this.CheckPropertyChanged<Auction>
("SelectedAuction", ref this.selectedAuction, ref value);
}
}
Is it that there is another method to use when replacing the object itself or something additional i need to ref?