我在一个解决方案中使用了三个 xaml 页面。我在 xaml1 中创建了名为“Storage”的目录。我需要在其他两个 xaml 中使用相同的目录....
代码:
using (IsolatedStorageFile myIsolatedStorage = IsolatedStorageFile.GetUserStoreForApplication())
{
myIsolatedStorage.CreateDirectory("Storage");
IsolatedStorageFileStream fileStream = myIsolatedStorage.OpenFile("Storage\\myFile.txt", FileMode.Open, FileAccess.Write);
using (StreamWriter writer = new StreamWriter(fileStream))
{ }
}
如何在其他两个 xaml 中使用这个目录?
任何帮助......
提前致谢