6 types derived from TileBrush
PresentationCore (6)
System\Windows\Media\DrawingBrush.cs (1)
17
public sealed partial class DrawingBrush :
TileBrush
System\Windows\Media\Generated\DrawingBrush.cs (1)
17
sealed partial class DrawingBrush :
TileBrush
System\Windows\Media\Generated\ImageBrush.cs (1)
17
sealed partial class ImageBrush :
TileBrush
System\Windows\Media\Generated\VisualBrush.cs (1)
18
sealed partial class VisualBrush :
TileBrush
System\Windows\Media\ImageBrush.cs (1)
17
public sealed partial class ImageBrush :
TileBrush
System\Windows\Media\VisualBrush.cs (1)
23
public sealed partial class VisualBrush :
TileBrush
, ICyclicBrush
85 references to TileBrush
PresentationCore (33)
System\Windows\Media\Generated\TileBrush.cs (30)
29
public new
TileBrush
Clone()
31
return (
TileBrush
)base.Clone();
38
public new
TileBrush
CloneCurrentValue()
40
return (
TileBrush
)base.CloneCurrentValue();
56
TileBrush
target = ((
TileBrush
) d);
63
TileBrush
target = ((
TileBrush
) d);
70
TileBrush
target = ((
TileBrush
) d);
77
TileBrush
target = ((
TileBrush
) d);
84
TileBrush
target = ((
TileBrush
) d);
91
TileBrush
target = ((
TileBrush
) d);
98
TileBrush
target = ((
TileBrush
) d);
105
TileBrush
target = ((
TileBrush
) d);
112
TileBrush
target = ((
TileBrush
) d);
119
TileBrush
target = ((
TileBrush
) d);
126
TileBrush
target = ((
TileBrush
) d);
390
typeof(
TileBrush
),
395
typeof(
TileBrush
),
400
typeof(
TileBrush
),
405
Type typeofThis = typeof(
TileBrush
);
System\Windows\Media\RenderOptions.cs (3)
141
[AttachedPropertyBrowsableForType(typeof(
TileBrush
))]
174
[AttachedPropertyBrowsableForType(typeof(
TileBrush
))]
207
[AttachedPropertyBrowsableForType(typeof(
TileBrush
))]
PresentationFramework (12)
System\Windows\Markup\Baml2006\Baml2006KnownTypes.cs (1)
756
case 662: t = () => typeof(
TileBrush
); break;
System\Windows\Markup\Baml2006\WpfGeneratedKnownProperties.cs (9)
7177
Type type = typeof(System.Windows.Media.
TileBrush
);
7178
DependencyProperty dp = System.Windows.Media.
TileBrush
.TileModeProperty;
7180
this.GetXamlType(typeof(System.Windows.Media.
TileBrush
)), // DeclaringType
7194
Type type = typeof(System.Windows.Media.
TileBrush
);
7195
DependencyProperty dp = System.Windows.Media.
TileBrush
.ViewboxUnitsProperty;
7197
this.GetXamlType(typeof(System.Windows.Media.
TileBrush
)), // DeclaringType
7211
Type type = typeof(System.Windows.Media.
TileBrush
);
7212
DependencyProperty dp = System.Windows.Media.
TileBrush
.ViewportUnitsProperty;
7214
this.GetXamlType(typeof(System.Windows.Media.
TileBrush
)), // DeclaringType
System\Windows\Markup\Baml2006\WpfGeneratedKnownTypes.cs (1)
10249
typeof(System.Windows.Media.
TileBrush
),
System\Windows\Markup\KnownTypes.cs (1)
6216
case KnownElements.TileBrush: t = typeof(System.Windows.Media.
TileBrush
); break;
ReachFramework (40)
AlphaFlattener\BrushProxy.cs (22)
425
if (_brush is
TileBrush
)
427
TileBrush
tb = _brush as
TileBrush
;
626
if (_brush is
TileBrush
)
628
TileBrush
tb = _brush as
TileBrush
;
1192
TileBrush
tileBrush = (
TileBrush
)Brush;
1225
TileBrush
tileBrush = Brush as
TileBrush
;
1730
internal static bool IsTileCompleteCover(
TileBrush
brush)
2199
TileBrush
tA = brushA as
TileBrush
;
2219
TileBrush
tB = brushB as
TileBrush
;
2695
TileBrush
tb = brushProxy.Brush as
TileBrush
;
2894
TileBrush
tileBrush = brush as
TileBrush
;
3316
if (brushB.Brush is
TileBrush
&& !brushB._opacityOnly)
3318
TileBrush
tileBrush = (
TileBrush
)brushB.Brush;
AlphaFlattener\ImageProxy.cs (2)
165
TileBrush
opacityBrush = opacityMask.Brush as
TileBrush
;
AlphaFlattener\Primitive.cs (6)
695
TileBrush
brush,
1351
if ((Pen != null) && (Pen.StrokeBrush.Brush is
TileBrush
))
1365
TileBrush
tb = Brush.Brush as
TileBrush
;
1377
tb = Brush.Brush as
TileBrush
;
2195
if (!(bp.Brush is
TileBrush
))
AlphaFlattener\Utility.cs (7)
1489
if (! (bp.Brush as
TileBrush
).Viewport.Contains(maskBounds))
1539
public static Rect GetTileContentBounds(
TileBrush
brush)
1607
public static Rect GetTileAbsoluteViewbox(
TileBrush
brush)
1635
public static Rect GetTileAbsoluteViewport(
TileBrush
brush, Rect bounds)
1666
public static Matrix CreateViewboxToViewportTransform(
TileBrush
brush, Rect viewbox, Rect viewport)
1729
public static Matrix CreateViewboxToViewportTransform(
TileBrush
brush)
1748
public static Matrix CreateViewboxToViewportTransform(
TileBrush
brush, Rect bounds)
Serialization\VisualSerializer.cs (3)
418
private void WriteTileBrush(string element,
TileBrush
brush, Rect bounds)
1724
TileBrush
tb = b as
TileBrush
;