我試圖在我的一個winform應用程序(VB .net)的開頭設置文化信息。代碼是:如何在Winform應用程序中設置應用程序範圍的文化信息
Public Sub New()
System.Threading.Thread.CurrentThread.CurrentCulture = New System.Globalization.CultureInfo("en-CA")
System.Threading.Thread.CurrentThread.CurrentUICulture = New System.Globalization.CultureInfo("en-CA")
' This call is required by the Windows Form Designer.
InitializeComponent()
' Add any initialization after the InitializeComponent() call.
End Sub
但是,後續窗體中的日期時間選擇器顯示類型爲「dd-MM-yyyy」的日期格式。我如何設置是正確的?我錯過了哪些步驟。
en-CA或en-US沒有任何區別。 –
在希臘語中嘗試格式化數字,逗號和句點顯示爲不同的方式! – tommed