是否可以在Windows Store 8.1应用程序中获取本地化文件

时间:2015-02-27 01:00:46

标签: c# windows windows-runtime windows-store-apps win-universal-app

我正在尝试获取当前语言的本地化文件。

我将文件放到Resources/en-US/layer_items.json并将BuildAction设置为Content并尝试使用此代码找到他

        Uri uri = new Uri("ms-appx:///Resources/layer_items.json");
        StorageFile file = await StorageFile.GetFileFromApplicationUriAsync(uri);
        string content = await FileIO.ReadTextAsync(file);

但我得到了FileNotFound Exception。

如何在Windows Store 8.1应用程序中获取本地化文件?

0 个答案:

没有答案