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.
我想在我的应用程序中获取本地化文化的列表,但还没有找到方法来做到这一点。我必须在应用程序中对其进行硬编码还是有其他方法?
您可以阅读 WMAppManifest.xml 文件以获取已翻译语言的列表。下面的代码段提供了所需的详细信息(可能需要对最终输出稍作修改)
XDocument.Load("WMAppManifest.xml").Root.Element("Languages").Elements("Language").Attributes();