LightSwitch应用程序本地化问题

时间:2015-07-06 20:08:48

标签: lightswitch-2013

我正在使用LightSwitch 2015,尝试使用此代码本地化应用程序:

Dim MyCulta = New System.Globalization.CultureInfo('ar')
System.Threading.Thread.CurrentThread.CurrentCulture = MyCulta
System.Threading.Thread.CurrentThread.CurrentUICulture = MyCulta

但屏幕上没有任何影响。我需要在此代码后刷新一些内容吗?

这是一个桌面应用程序&我有'ar'语言的资源文件,包括Service&客户端。

感谢您的帮助。

1 个答案:

答案 0 :(得分:0)

您是否已在InitializeDataWorkspace事件上尝试过?我在屏幕上使用以下代码。

Dispatchers.Main.BeginInvoke(() =>
{
  System.Threading.Thread.CurrentThread.CurrentCulture = new CultureInfo("id-ID");
});

干杯