3 instantiations of DrawingImage
PresentationCore (1)
Core\CSharp\System\Windows\Media\Generated\DrawingImage.cs (1)
173return new DrawingImage();
PresentationFramework (2)
src\Framework\System\Windows\Markup\Baml2006\WpfGeneratedKnownTypes.cs (1)
3968bamlType.DefaultConstructor = delegate() { return new System.Windows.Media.DrawingImage(); };
src\Framework\System\Windows\Markup\KnownTypes.cs (1)
1249case KnownElements.DrawingImage: o = new System.Windows.Media.DrawingImage(); break;
15 references to DrawingImage
PresentationCore (9)
Core\CSharp\System\Windows\Media\Generated\DrawingImage.cs (7)
65public new DrawingImage Clone() 67return (DrawingImage)base.Clone(); 74public new DrawingImage CloneCurrentValue() 76return (DrawingImage)base.CloneCurrentValue(); 111DrawingImage target = ((DrawingImage) d); 353Type typeofThis = typeof(DrawingImage);
Core\CSharp\System\Windows\Media\ImageBrush.cs (2)
73DrawingImage di = ImageSource as DrawingImage;
PresentationFramework (6)
src\Framework\System\Windows\Documents\WpfPayload.cs (3)
440Invariant.Assert(image.Source is DrawingImage); 442DrawingImage di = (DrawingImage)image.Source;
src\Framework\System\Windows\Markup\Baml2006\Baml2006KnownTypes.cs (1)
276case 184: t = () => typeof(DrawingImage); break;
src\Framework\System\Windows\Markup\Baml2006\WpfGeneratedKnownTypes.cs (1)
3966typeof(System.Windows.Media.DrawingImage),
src\Framework\System\Windows\Markup\KnownTypes.cs (1)
5728case KnownElements.DrawingImage: t = typeof(System.Windows.Media.DrawingImage); break;