1 つのソリューションで 3 つの xaml ページを使用しています。xaml1 に「Storage」という名前のディレクトリを作成しました。他の2つの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))
{ }
}
このディレクトリを他の 2 つの xaml で使用するにはどうすればよいですか?
どんな助けでも.....
前もって感謝します