我想给用户选择文本文件区域设置.
.net中是否有一些类可以保留可用语言环境列表?
现在,我打算从MSDN页面:Language Identifier Constants and Strings创建我自己的列表类,但如果.net中已经存在某些东西会更好.
以下是杰里米在答案中写道的CultureInfo.GetCultures method MSDN文章.还有代码示例.
解决方法
你想要一个’for each locale loop’.
Dim info As CultureInfo For Each info In CultureInfo.GetCultures(CultureTypes.AllCultures) ListBox1.Items.Add(info.EnglishName) Next
需要半秒钟才能将区域设置列表转储到ListBox1中
然后,您可以通过各种方式引用“信息”,例如:
info.NumberFormat info.DateTimeFormat
在该区域设置日期获取今天的日期:
If Not info.IsNeutralCulture Then Dim dateNow As DateTime = DateTime.Now ListBox1.Items.Add(dateNow.ToString("d",info.DateTimeFormat).ToString) End If