Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我需要从与当前线程的文化不同的文化中加载 Windows Phone 应用程序(Silverlight)中的资源(以处理我需要在手机语言更改时执行的一些操作)。
我怎样才能做到这一点?
提前致谢。
具有接受对象的方法的ResourceManager重载版本。GetObject()CultureInfo
ResourceManager
GetObject()
CultureInfo
因此,您将根据所需的文化创建此对象并将其传递:
CultureInfo enCulture = new CultureInfo("en-US"); ResourceManager.GetObject("objectname", enCulture);