I've a WPF4 Application.
There I bind an UI Control to a DateTimeOffSet value. For example a textblock
<TextBlock Text="{Binding Due.LocalDateTime,StringFormat='{}{0:dd MMM HH:mm}'}"/>
But I want a culture aware display of the value. So for example in germany there is a 24h represenation and in america a AM/PM representation.
What is the best / smartest way to realize this ? Do I need a covnerter ? or is there a way to represent this in a xaml ? Also the order of the date fields are different and so on...