xamarin/Xamarin.Forms
DatePicker.Format doesn't work on UWP platform .
Aberta
#8.670 aberto em 26 de nov. de 2019
e/3 :clock3:help wantedinactivep/UWPt/bug :bug:up-for-grabs
Métricas do repositório
- Stars
- (5.644 estrelas)
- Métricas de merge de PR
- (Nenhuma PRs mesclada em 30d)
Description
I have a DatePicker in my application and I want to display the date in this format : 11/26/2019 So I change the Format property as follow :
myDatePicker.Format = "MM/dd/yyyy"
myDatePicker.Date = DateTime.Now;
Above code works fine on Android and iOS , but on UWP ,the display date got this format : November 26 2019 .