5 instantiations of BitmapImage
PresentationCore (1)
System\Windows\Media\Imaging\Generated\BitmapImage.cs (1)
297return new BitmapImage();
PresentationFramework (3)
System\Windows\Documents\FixedElement.cs (1)
300Source = new System.Windows.Media.Imaging.BitmapImage(source)
System\Windows\Markup\Baml2006\WpfGeneratedKnownTypes.cs (1)
2045DefaultConstructor = delegate () { return new System.Windows.Media.Imaging.BitmapImage(); },
System\Windows\Markup\KnownTypes.cs (1)
1134case 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)
34public new BitmapImage Clone() 36return (BitmapImage)base.Clone(); 43public new BitmapImage CloneCurrentValue() 45return (BitmapImage)base.CloneCurrentValue(); 61BitmapImage target = ((BitmapImage) d); 70BitmapImage target = ((BitmapImage) d); 79BitmapImage target = ((BitmapImage) d); 88BitmapImage target = ((BitmapImage) d); 97BitmapImage target = ((BitmapImage) d); 106BitmapImage target = ((BitmapImage) d); 115BitmapImage target = ((BitmapImage) d); 124BitmapImage target = ((BitmapImage) d); 133BitmapImage target = ((BitmapImage) d); 304BitmapImage sourceBitmapImage = (BitmapImage) source; 321BitmapImage sourceBitmapImage = (BitmapImage) source; 338BitmapImage sourceBitmapImage = (BitmapImage) source; 355BitmapImage 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(nameof(Media.Imaging.BitmapImage)); 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)
2042typeof(System.Windows.Media.Imaging.BitmapImage),
System\Windows\Markup\KnownTypes.cs (1)
5580case 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;