我正在尝试获取当前语言的本地化文件。
我将文件放到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应用程序中获取本地化文件?