0

大家好,我对 c# 非常陌生。我搜索了谷歌如何使用 c# 制作多语言日历,但我没有找到任何结果。我需要用这三种语言制作日历有什么帮助

4

1 回答 1

0

对于桌面应用程序

你必须改变当前的文化

 System.Threading.Thread.CurrentThread.CurrentCulture = System.Globalization.CultureInfo.CreateSpecificCulture("fr")
 System.Threading.Thread.CurrentThread.CurrentUICulture = System.Threading.Thread.CurrentThread.CurrentCulture

检查此链接http://support.microsoft.com/Default.aspx?scid=kb%3ben-us%3b889834&x=18&y=19

对于网页

只需更改页面文化和 UI 文化即可获得伊斯兰日历更改文化

<%@ Page UICulture="ar" Culture="ar-SA" %>

公历:改回英文

<%@ Page UICulture="en" Culture="en-US" %>
于 2012-11-22T14:11:39.347 回答