0

Can you please let me know how can I modify the silverlight toolkit date picker (toolkit:DatePicker) to work with hijri calendar Regards.

4

1 回答 1

0

在这里,我们将回答您在 windows mobile 8 上测试过的问题

CultureInfo sa = new CultureInfo("ar-SA");
sa.DateTimeFormat.Calendar = new System.Globalization.HijriCalendar();
Thread.CurrentThread.CurrentCulture = sa;
// Sets the UI culture to Arabic (Saudi Arabia)
Thread.CurrentThread.CurrentUICulture = sa;
于 2014-12-25T10:01:14.757 回答