1、直接關聯到文件,關聯后不能刪除此圖片,因為圖片正在使用。
imageEditImage.Source = new BitmapImage(new Uri(strImagePath, UriKind.Absolute));//strImagePath 就絕對路徑
2、轉成二進制,與圖片原文件脫離
var img = new BitmapImage(); img.BeginInit(); img.StreamSource = new MemoryStream(File.ReadAllBytes(path)); img.EndInit(); img.Source = img ;
