<TextBox Text="{Binding CurrentGameDate,Mode=OneWay,
Converter={StaticResource DateTimeConverter},
StringFormat='{}{0:dd/MM/yyyy}'}" />
string format doesnt seem to work.
i want only the date.
i've tried stringformat=d
String Format for dates works on variables of type DateTime only. So, you should return a DateTime instead of string from the converter.