I want to set silverlight DatePicker date format into "MM/dd/yyyy" format. I tried convertors, and setting StringFormat in DisplayDate and SelectedDate properties. No luck so far.
I can not change application wide culture short date format string to achieve this, need this format only in specific DatePicker.
<controls:DatePicker x:Name="GotoDatePicker2"
SelectedDate="{Binding Date, Mode=TwoWay, NotifyOnValidationError=True}"
DisplayDate="{Binding Date, Mode=TwoWay}" >
</controls:DatePicker>
Any workaround regarding this matter ?