Windows Phone 8.1 回历

Windows Phone 8.1 Hijri Calendar

如何将winrt xaml toolkit calendar 格鲁吉亚格式转换为Hijri Calendar 有什么办法吗?请帮助我

这是将日期转换为回历的方法。

using System.Globalization;

CultureInfo arSA = new CultureInfo("ar-SA");
DateTime dt = DateTime.Now; //Get from your toolkit calendar
lblLog.Text = dt.ToString("dd/MM/yyyy", arSA);

希望对您有所帮助。