gpt4 book ai didi

c# - 如何在运行时更改 CurrentCulture?

转载 作者:IT王子 更新时间:2023-10-29 04:46:14 24 4
gpt4 key购买 nike

我需要根据每种文化的资源文件在运行时更改文化。

我需要根据两种文化更改表单中控件的属性其中有指定的.resx文件

resorces1.aspx.resx // default 
resorces1.aspx.he-IL.resx // hebrew culture

我可以使用回退资源加载页面,或者在页面加载时提供 UICulture = "he-IL" 值,它可以很好地加载所需的资源。

问题是我需要在运行时进行这些更改。

1.. 在我更改按钮单击事件的值之后

    btn_change_Click(....)
{
UICulture = "he-IL" ;
}

还是回到“en-US”的初始值

如何在运行时提交对 UICulture 的更改?

2.. 如果我不知道它是“en-US”,我如何引用后备资源文件?

最佳答案

改变当前的 UI 文化:

System.Threading.Thread.CurrentThread.CurrentUICulture = new CultureInfo("he-IL");

或者更好的是,检索缓存的 he-IL 文化的只读实例:

System.Threading.Thread.CurrentThread.CurrentUICulture = CultureInfo.GetCultureInfo("he-IL");

At run time, ASP.NET uses the resource file that is the best match for the setting of the CurrentUICulture property. The UI culture for the thread is set according to the UI culture of the page. For example, if the current UI culture is Spanish, ASP.NET uses the compiled version of the WebResources.es.resx file. If there is no match for the current UI culture, ASP.NET uses resource fallback. It starts by searching for resources for a specific culture. If those are not available, it searches for the resources for a neutral culture. If these are not found, ASP.NET loads the default resource file. In this example, the default resource file is WebResource.resx.

关于c# - 如何在运行时更改 CurrentCulture?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7000509/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com