UWP波斯日历日期选择器

时间:2017-03-24 04:45:55

标签: c# xaml uwp uwp-xaml windows-community-toolkit

我只是想在UWP应用程序中使用波斯日期选择器并尝试使用CalendarIdentifier属性但它没有波斯日历属性。

谢谢你帮助我

1 个答案:

答案 0 :(得分:1)

  

尝试使用CalendarIdentifier属性,但它没有波斯日历属性。

CalendarIdentifiers类确实有Persian属性。您可以通过以下代码将其用于XAML中的DatePicker

<DatePicker x:Name="btnDatePicker" CalendarIdentifier="PersianCalendar" ></DatePicker>

或者设置代码:

btnDatePicker.CalendarIdentifier = CalendarIdentifiers.Persian;

它只是在xaml中没有智能提示。