3 instantiations of DrawingImage
PresentationCore (1)
System\Windows\Media\Generated\DrawingImage.cs (1)
135return new DrawingImage();
PresentationFramework (2)
System\Windows\Markup\Baml2006\WpfGeneratedKnownTypes.cs (1)
3970bamlType.DefaultConstructor = delegate() { return new System.Windows.Media.DrawingImage(); };
System\Windows\Markup\KnownTypes.cs (1)
1248case KnownElements.DrawingImage: o = new System.Windows.Media.DrawingImage(); break;
21 references to DrawingImage
PresentationCore (9)
System\Windows\Media\Generated\DrawingImage.cs (7)
31public new DrawingImage Clone() 33return (DrawingImage)base.Clone(); 40public new DrawingImage CloneCurrentValue() 42return (DrawingImage)base.CloneCurrentValue(); 73DrawingImage target = ((DrawingImage) d); 304Type typeofThis = typeof(DrawingImage);
System\Windows\Media\ImageBrush.cs (2)
52DrawingImage di = ImageSource as DrawingImage;
PresentationFramework (6)
System\Windows\Documents\WpfPayload.cs (3)
415Invariant.Assert(image.Source is DrawingImage); 417DrawingImage di = (DrawingImage)image.Source;
System\Windows\Markup\Baml2006\Baml2006KnownTypes.cs (1)
278case 184: t = () => typeof(DrawingImage); break;
System\Windows\Markup\Baml2006\WpfGeneratedKnownTypes.cs (1)
3968typeof(System.Windows.Media.DrawingImage),
System\Windows\Markup\KnownTypes.cs (1)
5738case KnownElements.DrawingImage: t = typeof(System.Windows.Media.DrawingImage); break;
ReachFramework (6)
AlphaFlattener\BrushProxy.cs (2)
3176DrawingImage drawingImage = ib.ImageSource as DrawingImage;
AlphaFlattener\Primitive.cs (2)
411DrawingImage di = id.ImageSource as DrawingImage;
Serialization\DrawingContextFlattener.cs (2)
282DrawingImage drawingImage; 290else if ((drawingImage = image as DrawingImage) != null)