In my MainPage.xaml I have a ListBox, with a datatemplate like the following:
<DataTemplate>
<TextBlock Name="DateTextBlock" Text="{Binding Modified, Converter={StaticResource RelativeTimeConverter}}"/>
</DataTemplate>
When the app is launched, the conversion is done once, and then until I relaunch the app, the textblock's text remains the same, even if I navigate to another page and return to MainPage.xaml .
All I want is to use the converter continually, and not only once when the Modified property changes, so as to show that time goes by, as the user is using my app. How could this be accomplished?