0

我们以这种方式添加文件StorageFolder

StorageFolder local = Windows.Storage.ApplicationData.Current.LocalFolder;

var dataFolder = await local.CreateFolderAsync("DataFolder",
    CreationCollisionOption.OpenIfExists);

var file = await dataFolder.CreateFileAsync("DataFile.txt",
CreationCollisionOption.ReplaceExisting);

但是如何在设计器中添加需要的文件,有一些图片,文本,我如何添加它们以便以后在应用程序中使用它们?

4

1 回答 1

1

只需将文件添加到您的项目并确保将Build Action其设置为Content.

于 2013-06-27T04:22:15.830 回答