Windows phone 8.1 Windows Phone 8.1 Hijri日历

Windows phone 8.1 Windows Phone 8.1 Hijri日历,windows-phone-8.1,Windows Phone 8.1,如何将winrt xaml toolkit日历格式转换为Hijri日历有什么方法吗?请帮帮我,以下是如何将日期转换为Hijri日历的方法 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);

如何将winrt xaml toolkit日历格式转换为Hijri日历有什么方法吗?请帮帮我,以下是如何将日期转换为Hijri日历的方法

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);
希望这有帮助