3 instantiations of DrawingImage
PresentationCore (1)
System\Windows\Media\Generated\DrawingImage.cs (1)
149return new DrawingImage();
PresentationFramework (2)
System\Windows\Markup\Baml2006\WpfGeneratedKnownTypes.cs (1)
4276DefaultConstructor = delegate () { return new System.Windows.Media.DrawingImage(); },
System\Windows\Markup\KnownTypes.cs (1)
1241case KnownElements.DrawingImage: o = new System.Windows.Media.DrawingImage(); break;
21 references to DrawingImage
PresentationCore (9)
System\Windows\Media\Generated\DrawingImage.cs (7)
41public new DrawingImage Clone() 43return (DrawingImage)base.Clone(); 50public new DrawingImage CloneCurrentValue() 52return (DrawingImage)base.CloneCurrentValue(); 87DrawingImage target = ((DrawingImage) d); 322Type typeofThis = typeof(DrawingImage);
System\Windows\Media\ImageBrush.cs (2)
51DrawingImage di = ImageSource as DrawingImage;
PresentationFramework (6)
System\Windows\Documents\WpfPayload.cs (3)
416Invariant.Assert(image.Source is DrawingImage); 418DrawingImage di = (DrawingImage)image.Source;
System\Windows\Markup\Baml2006\Baml2006KnownTypes.cs (1)
277case 184: t = () => typeof(DrawingImage); break;
System\Windows\Markup\Baml2006\WpfGeneratedKnownTypes.cs (1)
4273typeof(System.Windows.Media.DrawingImage),
System\Windows\Markup\KnownTypes.cs (1)
5731case KnownElements.DrawingImage: t = typeof(System.Windows.Media.DrawingImage); break;
ReachFramework (6)
AlphaFlattener\BrushProxy.cs (2)
3178DrawingImage drawingImage = ib.ImageSource as DrawingImage;
AlphaFlattener\Primitive.cs (2)
412DrawingImage di = id.ImageSource as DrawingImage;
Serialization\DrawingContextFlattener.cs (2)
281DrawingImage drawingImage; 289else if ((drawingImage = image as DrawingImage) != null)