MemoryStream, , : MemoryStream, , , , MemoryStream , .
- BitmapCacheOptions.OnLoad:
path = @"c:\somePath\somePic.jpg"
var source = new BitmapImage();
source.BeginInit();
source.UriSource = new Uri(path, UriKind.RelativeOrAbsolute);
source.CacheOption = BitmapCacheOption.OnLoad;
source.EndInit();
var img = new System.Windows.Controls.Image { Source = source };
.
. , , , CreateOption = BitmapCreateOption.IgnoreImageCache. MemoryStream, .