Hi! I'm using a DataTemplate to show items (from a class via data binding) in a listbox. This class also contains date and time, and I'm using a converter to convert this date/time to relative time (xx minutes ago), which is then displayed in a TextBlock. So far everything is great.
The problem is that I don't know how to keep this relative time updated (they're all stuck at the generated value, e.g. "1 second ago"). I could use ListBox.Items.Refresh(), but that also re-runs the animations I've set up for the items.
Any ideas?
Thanks in advance!