如何在设计时将文件添加到“StorageFolder”?

时间:2013-06-26 21:34:06

标签: c# windows-phone-8 windows-phone

我们以这种方式将文件添加到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);

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

1 个答案:

答案 0 :(得分:1)

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