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)
4277DefaultConstructor = delegate () { return new System.Windows.Media.DrawingImage(); },
System\Windows\Markup\KnownTypes.cs (1)
1242case 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)
417Invariant.Assert(image.Source is DrawingImage); 419DrawingImage di = (DrawingImage)image.Source;
System\Windows\Markup\Baml2006\Baml2006KnownTypes.cs (1)
278case 184: t = () => typeof(DrawingImage); break;
System\Windows\Markup\Baml2006\WpfGeneratedKnownTypes.cs (1)
4274typeof(System.Windows.Media.DrawingImage),
System\Windows\Markup\KnownTypes.cs (1)
5732case KnownElements.DrawingImage: t = typeof(System.Windows.Media.DrawingImage); break;
ReachFramework (6)
AlphaFlattener\BrushProxy.cs (2)
3179DrawingImage drawingImage = ib.ImageSource as DrawingImage;
AlphaFlattener\Primitive.cs (2)
413DrawingImage di = id.ImageSource as DrawingImage;
Serialization\DrawingContextFlattener.cs (2)
282DrawingImage drawingImage; 290else if ((drawingImage = image as DrawingImage) != null)