5 instantiations of ImageBrush
PresentationCore (2)
Core\CSharp\System\Windows\Media\Generated\ImageBrush.cs (1)
173return new ImageBrush();
Core\CSharp\System\Windows\Media\HitTestDrawingContextWalker.cs (1)
178ImageBrush imageBrush = new ImageBrush();
PresentationFramework (3)
src\Framework\System\Windows\Controls\Primitives\DocumentPageView.cs (1)
983ImageBrush imageBrush = new ImageBrush(renderTargetBitmap);
src\Framework\System\Windows\Markup\Baml2006\WpfGeneratedKnownTypes.cs (1)
5278bamlType.DefaultConstructor = delegate() { return new System.Windows.Media.ImageBrush(); };
src\Framework\System\Windows\Markup\KnownTypes.cs (1)
1324case KnownElements.ImageBrush: o = new System.Windows.Media.ImageBrush(); break;
20 references to ImageBrush
PresentationCore (9)
Core\CSharp\System\Windows\Media\Effects\ShaderEffect.cs (1)
444typeof(ImageBrush).IsInstanceOfType(newValue))
Core\CSharp\System\Windows\Media\Generated\ImageBrush.cs (7)
65public new ImageBrush Clone() 67return (ImageBrush)base.Clone(); 74public new ImageBrush CloneCurrentValue() 76return (ImageBrush)base.CloneCurrentValue(); 111ImageBrush target = ((ImageBrush) d); 416Type typeofThis = typeof(ImageBrush);
Core\CSharp\System\Windows\Media\HitTestDrawingContextWalker.cs (1)
178ImageBrush imageBrush = new ImageBrush();
PresentationFramework (11)
src\Framework\System\Windows\Controls\Primitives\DocumentPageView.cs (1)
983ImageBrush imageBrush = new ImageBrush(renderTargetBitmap);
src\Framework\System\Windows\Documents\FixedDocument.cs (1)
526if (element is Glyphs || element is Image || (p != null && p.Fill is ImageBrush))
src\Framework\System\Windows\Documents\FixedSOMImage.cs (2)
75Debug.Assert(path.Fill is ImageBrush); 76ImageSource source = ((ImageBrush)(path.Fill)).ImageSource;
src\Framework\System\Windows\Documents\FixedSOMPageConstructor.cs (1)
258obj is Path && ((obj as Path).Fill is ImageBrush))
src\Framework\System\Windows\Documents\FixedTextBuilder.cs (2)
832return p.Fill is ImageBrush && p.Data != null; 1441if (!(child is Path) || ((Path)child).Fill is ImageBrush)
src\Framework\System\Windows\Documents\FixedTextView.cs (1)
119if (p.Fill is ImageBrush)
src\Framework\System\Windows\Markup\Baml2006\Baml2006KnownTypes.cs (1)
374case 282: t = () => typeof(ImageBrush); break;
src\Framework\System\Windows\Markup\Baml2006\WpfGeneratedKnownTypes.cs (1)
5276typeof(System.Windows.Media.ImageBrush),
src\Framework\System\Windows\Markup\KnownTypes.cs (1)
5826case KnownElements.ImageBrush: t = typeof(System.Windows.Media.ImageBrush); break;