我試圖從我的webservice下載一個文件'theme.xaml',並將它添加到App.Current.Resources.MergedDictionaries中。我遇到的麻煩是我不知道如何從IsolatedStorage中的文件創建一個ResourceDictionary,在那裏緩存它。從IsolatedStorage中加載ResourceDictionary
我想要做這樣的事情:
ResourceDictionary rd = new ResourceDictionary();
rd.Source = new (Uri("isostore:/theme.xaml"));
App.Current.Resources.MergedDictionaries.Clear();
App.Current.Resources.MergedDictionaries.Add(rd);
但我得到一個「未指定錯誤」上設置源呼叫。我很確定我不能在Uri中這樣處理islolated存儲。但是,做到這一點的正確方法是什麼?
你可以發佈你正在得到的確切的錯誤信息..?\ – MethodMan 2012-01-06 22:42:44