I have an Combobox which is poplated with data that is time sensitive.
My setup is a bit hard to explain so lets assume that the Combobox has a itemtemplate containing a textblock.
The textblock is databound to a property returning DateTime.Now, I would like to rebind the value of the textblock (not the whole combobox).
Is there a way of looping through the items to update them or something like that or some other magical function that can rebind the items (without rebinding the whole Combobox).
Cheers
/Jimmy
Is there a reason you can’t just raise an INotifyPropertyChanged event in the bound object(s) for the property that is bound to the textblock? As long as you don’t raise INotifyPropertyChanged on whatever collection is bound to the combobox ItemsSource this should work I think.