5 instantiations of BitmapImage
PresentationCore (1)
System\Windows\Media\Imaging\Generated\BitmapImage.cs (1)
296return new BitmapImage();
PresentationFramework (3)
System\Windows\Documents\FixedElement.cs (1)
295image.Source = new System.Windows.Media.Imaging.BitmapImage(source);
System\Windows\Markup\Baml2006\WpfGeneratedKnownTypes.cs (1)
2000bamlType.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)
157newImage = new SWMI.BitmapImage();
70 references to BitmapImage
PresentationCore (56)
System\Windows\Media\Imaging\BitmapImage.cs (25)
198private void ClonePrequel(BitmapImage otherBitmapImage) 206private void ClonePostscript(BitmapImage otherBitmapImage) 228private BitmapImage CheckCache(Uri uri) 236BitmapImage bitmapImage = (bitmapWeakReference.Target as BitmapImage); 293BitmapImage bitmapImage = CheckCache(uri); 704BitmapImage image = (BitmapImage)d; 720BitmapImage image = (BitmapImage)d; 736BitmapImage image = (BitmapImage)d; 752BitmapImage image = (BitmapImage)d; 768BitmapImage image = (BitmapImage)d; 784BitmapImage image = (BitmapImage)d; 800BitmapImage image = (BitmapImage)d; 816BitmapImage image = (BitmapImage)d; 832BitmapImage image = (BitmapImage)d; 925private BitmapImage _cachedBitmapImage;
System\Windows\Media\Imaging\Generated\BitmapImage.cs (31)
33public new BitmapImage Clone() 35return (BitmapImage)base.Clone(); 42public new BitmapImage CloneCurrentValue() 44return (BitmapImage)base.CloneCurrentValue(); 60BitmapImage target = ((BitmapImage) d); 69BitmapImage target = ((BitmapImage) d); 78BitmapImage target = ((BitmapImage) d); 87BitmapImage target = ((BitmapImage) d); 96BitmapImage target = ((BitmapImage) d); 105BitmapImage target = ((BitmapImage) d); 114BitmapImage target = ((BitmapImage) d); 123BitmapImage target = ((BitmapImage) d); 132BitmapImage target = ((BitmapImage) d); 303BitmapImage sourceBitmapImage = (BitmapImage) source; 320BitmapImage sourceBitmapImage = (BitmapImage) source; 337BitmapImage sourceBitmapImage = (BitmapImage) source; 354BitmapImage sourceBitmapImage = (BitmapImage) source; 493Type typeofThis = typeof(BitmapImage);
PresentationFramework (12)
System\Windows\Documents\FixedSOMImage.cs (6)
50if (image.Source is BitmapImage) 52BitmapImage imageSource = image.Source as BitmapImage; 71if (source is BitmapImage) 73BitmapImage imageSource = source as BitmapImage;
System\Windows\Documents\TextRangeSerialization.cs (3)
1189xmlWriter.WriteStartElement(typeof(System.Windows.Media.Imaging.BitmapImage).Name); 1190xmlWriter.WriteAttributeString(System.Windows.Media.Imaging.BitmapImage.UriSourceProperty.Name, imageSource); 1191xmlWriter.WriteAttributeString(System.Windows.Media.Imaging.BitmapImage.CacheOptionProperty.Name, "OnLoad");
System\Windows\Markup\Baml2006\Baml2006KnownTypes.cs (1)
126case 32: t = () => typeof(BitmapImage); break;
System\Windows\Markup\Baml2006\WpfGeneratedKnownTypes.cs (1)
1998typeof(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)
136internal static SWMI.BitmapImage ToSystemWindowsMediaImagingBitmapImage(SD.Image fromImage) 143SWMI.BitmapImage newImage = null;