我下載一個聲音,並與.mp3擴展這樣的保存: var response = await client.GetStreamAsync(fileUrl);
using (IsolatedStorageFileStream fileStream = new IsolatedStorageFileStream(filePath, FileMode.Create, isolatedStorage))
在我的應用程序中,我有圖像列表。我需要做的是下載這些圖像並將它們保存在獨立存儲中。 我已經有了: using (IsolatedStorageFile localFile = IsolatedStorageFile.GetUserStoreForApplication()) {
...
foreach (var item in MyList)
{
Uri uri = new Uri
我正在使用IsolatedStorageSettings爲我的應用程序中的某個鍵存儲聯繫人列表。但應用程序只存儲列表,直到應用程序處於活動狀態(即,像從一個頁面導航到另一個頁面一樣)。如果我退出應用程序並重新啓動它,則找不到存儲的密鑰/聯繫人列表。如何永久保存應用程序列表,直到應用程序安裝完成? 這裏是我的視圖模型的代碼,我使用: public class ContactsViewModel :