5 instantiations of BitmapImage
PresentationCore (1)
System\Windows\Media\Imaging\Generated\BitmapImage.cs (1)
312return new BitmapImage();
PresentationFramework (3)
System\Windows\Documents\FixedElement.cs (1)
303image.Source = new System.Windows.Media.Imaging.BitmapImage(source);
System\Windows\Markup\Baml2006\WpfGeneratedKnownTypes.cs (1)
2002bamlType.DefaultConstructor = delegate() { return new System.Windows.Media.Imaging.BitmapImage(); };
System\Windows\Markup\KnownTypes.cs (1)
1140case KnownElements.BitmapImage: o = new System.Windows.Media.Imaging.BitmapImage(); break;
WindowsFormsIntegration (1)
System\Windows\Integration\Convert.cs (1)
160newImage = new SWMI.BitmapImage();
70 references to BitmapImage
PresentationCore (56)
System\Windows\Media\Imaging\BitmapImage.cs (25)
216private void ClonePrequel(BitmapImage otherBitmapImage) 224private void ClonePostscript(BitmapImage otherBitmapImage) 246private BitmapImage CheckCache(Uri uri) 254BitmapImage bitmapImage = (bitmapWeakReference.Target as BitmapImage); 311BitmapImage bitmapImage = CheckCache(uri); 722BitmapImage image = (BitmapImage)d; 738BitmapImage image = (BitmapImage)d; 754BitmapImage image = (BitmapImage)d; 770BitmapImage image = (BitmapImage)d; 786BitmapImage image = (BitmapImage)d; 802BitmapImage image = (BitmapImage)d; 818BitmapImage image = (BitmapImage)d; 834BitmapImage image = (BitmapImage)d; 850BitmapImage image = (BitmapImage)d; 943private BitmapImage _cachedBitmapImage;
System\Windows\Media\Imaging\Generated\BitmapImage.cs (31)
49public new BitmapImage Clone() 51return (BitmapImage)base.Clone(); 58public new BitmapImage CloneCurrentValue() 60return (BitmapImage)base.CloneCurrentValue(); 76BitmapImage target = ((BitmapImage) d); 85BitmapImage target = ((BitmapImage) d); 94BitmapImage target = ((BitmapImage) d); 103BitmapImage target = ((BitmapImage) d); 112BitmapImage target = ((BitmapImage) d); 121BitmapImage target = ((BitmapImage) d); 130BitmapImage target = ((BitmapImage) d); 139BitmapImage target = ((BitmapImage) d); 148BitmapImage target = ((BitmapImage) d); 319BitmapImage sourceBitmapImage = (BitmapImage) source; 336BitmapImage sourceBitmapImage = (BitmapImage) source; 353BitmapImage sourceBitmapImage = (BitmapImage) source; 370BitmapImage sourceBitmapImage = (BitmapImage) source; 509Type typeofThis = typeof(BitmapImage);
PresentationFramework (12)
System\Windows\Documents\FixedSOMImage.cs (6)
52if (image.Source is BitmapImage) 54BitmapImage imageSource = image.Source as BitmapImage; 73if (source is BitmapImage) 75BitmapImage imageSource = source as BitmapImage;
System\Windows\Documents\TextRangeSerialization.cs (3)
1195xmlWriter.WriteStartElement(typeof(System.Windows.Media.Imaging.BitmapImage).Name); 1196xmlWriter.WriteAttributeString(System.Windows.Media.Imaging.BitmapImage.UriSourceProperty.Name, imageSource); 1197xmlWriter.WriteAttributeString(System.Windows.Media.Imaging.BitmapImage.CacheOptionProperty.Name, "OnLoad");
System\Windows\Markup\Baml2006\Baml2006KnownTypes.cs (1)
128case 32: t = () => typeof(BitmapImage); break;
System\Windows\Markup\Baml2006\WpfGeneratedKnownTypes.cs (1)
2000typeof(System.Windows.Media.Imaging.BitmapImage),
System\Windows\Markup\KnownTypes.cs (1)
5586case KnownElements.BitmapImage: t = typeof(System.Windows.Media.Imaging.BitmapImage); break;
WindowsFormsIntegration (2)
System\Windows\Integration\Convert.cs (2)
139internal static SWMI.BitmapImage ToSystemWindowsMediaImagingBitmapImage(SD.Image fromImage) 146SWMI.BitmapImage newImage = null;