-1
我試圖通過從文本文件中讀取每行的名稱來填充List<Image>
。該文本文件如下所示:從文本文件中讀取應用程序時崩潰
image0
image1
image2
image
...
以下代碼使我的程序完全崩潰,並使Visual Studio凍結。
int counter = 0;
string line = string.Empty;
StreamReader file = new StreamReader("ItemFile.txt");
while ((line = file.ReadLine()) != null)
{
imageCollection.Add(new Image());
imageCollection[counter].Source = new BitmapImage(new Uri("Images/" + line + ".png", UriKind.Relative));
}
我認爲,在WP7,你需要使用IsolatedStorage機制來讀取/寫入文件。 – ZafarYousafi
是否有拋出的異常?請注意,加載大圖像的列表預計會很慢。 – Vlad
如果您的文件位於獨立存儲中,則應該從IsolatedStorage中讀取它們。 [該指南可能會對你有所幫助] –