我需要動態設置圖像源,請注意我的形象在網絡上的某個地方,這裏是我的代碼更改圖像源的背後 - WPF
BitmapImage logo = new BitmapImage();
logo.BeginInit();
logo.UriSource = new Uri(@"pack://application:,,,\\myserver\\folder1\\Customer Data\\sample.png");
logo.EndInit(); // Getting the exception here
ImageViewer1.Source = logo;
例外:
的無法識別URI前綴
你並不需要,如果你使用原義字符串 – 2010-09-24 13:08:33