3 instantiations of DrawingImage
PresentationCore (1)
System\Windows\Media\Generated\DrawingImage.cs (1)
163return new DrawingImage();
PresentationFramework (2)
System\Windows\Markup\Baml2006\WpfGeneratedKnownTypes.cs (1)
3972bamlType.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)
59public new DrawingImage Clone() 61return (DrawingImage)base.Clone(); 68public new DrawingImage CloneCurrentValue() 70return (DrawingImage)base.CloneCurrentValue(); 101DrawingImage target = ((DrawingImage) d); 332Type typeofThis = typeof(DrawingImage);
System\Windows\Media\ImageBrush.cs (2)
68DrawingImage di = ImageSource as DrawingImage;
PresentationFramework (6)
System\Windows\Documents\WpfPayload.cs (3)
421Invariant.Assert(image.Source is DrawingImage); 423DrawingImage di = (DrawingImage)image.Source;
System\Windows\Markup\Baml2006\Baml2006KnownTypes.cs (1)
280case 184: t = () => typeof(DrawingImage); break;
System\Windows\Markup\Baml2006\WpfGeneratedKnownTypes.cs (1)
3970typeof(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)
3180DrawingImage drawingImage = ib.ImageSource as DrawingImage;
AlphaFlattener\Primitive.cs (2)
416DrawingImage di = id.ImageSource as DrawingImage;
Serialization\DrawingContextFlattener.cs (2)
292DrawingImage drawingImage; 300else if ((drawingImage = image as DrawingImage) != null)