StorageFolder folder = await Windows.ApplicationModel.Package.Current.InstalledLocation.GetFolderAsync("Assets");
StorageFile file = await folder.GetFileAsync("TileSmall.xml");
string xml = await Windows.Storage.FileIO.ReadTextAsync(file);
似乎ReadTextAsync()命令在真实设备上不起作用。 有帮助吗? 感谢