如何将c#中的月历转换为波斯语日历

时间:2012-11-22 17:38:12

标签: c#

大家好我需要将c#表单中的月历转换为波斯语日历。 任何代码请求。我在谷歌尝试所有代码转换今天的日期,但不是整个日历。请帮忙

2 个答案:

答案 0 :(得分:0)

将转换特定日期转换为波斯语使用:

System.Globalization.PersianCalendar p = new System.Globalization.PersianCalendar();
DateTime date = DateTime.Today;
int year = p.GetYear(date);
int month = p.GetMonth(date);
int day = p.GetDayOfMonth(date);
DateTime d1 = new DateTime(year, month, day);

对于波斯日历请按照link完整的波斯日历Asp.net Here

<强>更新

Persian Calender Ui for Winform application

答案 1 :(得分:0)