100 references to FillRule
PresentationCore (86)
MS\Internal\Ink\StrokeRenderer.cs (2)
41FillRule = FillRule.Nonzero 223FillRule = FillRule.Nonzero
MS\Internal\KnownBoxes.cs (4)
11internal static object EvenOddBox = FillRule.EvenOdd; 12internal static object NonzeroBox = FillRule.Nonzero; 14internal static object Box(FillRule value) 16if (value == FillRule.Nonzero)
MS\Internal\Media\ParserStreamGeometryContext.cs (7)
78internal void SetFillRule(FillRule fillRule) 377FillRule fillRule; 599private static FillRule BoolToFillRule(bool value) 602return FillRule.EvenOdd; 604return FillRule.Nonzero; 607private static bool FillRuleToBool(FillRule fill) 609if (fill == FillRule.EvenOdd)
src\Microsoft.DotNet.Wpf\src\Common\Graphics\Generated\wgx_commands.cs (2)
858[FieldOffset(12)] internal FillRule FillRule; 877[FieldOffset(12)] internal FillRule FillRule;
src\Microsoft.DotNet.Wpf\src\Shared\MS\Internal\Generated\FillRuleValidation.cs (4)
27FillRule value = (FillRule) valueObject; 29return (value == FillRule.EvenOdd) || 30(value == FillRule.Nonzero);
System\Windows\Media\Composition.cs (5)
201FillRule fillRule, 242FillRule fillRule, 253FillRule fillRule1, 257FillRule fillRule2, 266FillRule fillRule,
System\Windows\Media\EllipseGeometry.cs (2)
285PathStreamGeometryContext ctx = new PathStreamGeometryContext(FillRule.EvenOdd, Transform); 304FillRule = FillRule.EvenOdd,
System\Windows\Media\FormattedText.cs (2)
1926FillRule = FillRule.Nonzero 1968FillRule = FillRule.Nonzero
System\Windows\Media\Generated\GeometryGroup.cs (6)
171public FillRule FillRule 175return (FillRule) GetValue(FillRuleProperty); 467internal const FillRule c_FillRule = FillRule.EvenOdd; 496typeof(FillRule), 498FillRule.EvenOdd,
System\Windows\Media\Generated\PathGeometry.cs (6)
93public FillRule FillRule 97return (FillRule) GetValue(FillRuleProperty); 265internal const FillRule c_FillRule = FillRule.EvenOdd; 294typeof(FillRule), 296FillRule.EvenOdd,
System\Windows\Media\Generated\StreamGeometry.cs (6)
80public FillRule FillRule 84return (FillRule) GetValue(FillRuleProperty); 174internal const FillRule c_FillRule = FillRule.EvenOdd; 200typeof(FillRule), 202FillRule.EvenOdd,
System\Windows\Media\Geometry.cs (8)
605FillRule fillRule = FillRule.Nonzero; 688FillRule fillRule = FillRule.Nonzero; 831FillRule fillRule = FillRule.Nonzero; 947internal FillRule FillRule; 989FillRule = FillRule.EvenOdd,
System\Windows\Media\GlyphRun.cs (1)
1588FillRule = FillRule.Nonzero
System\Windows\Media\GlyphTypeface.cs (1)
1258FillRule fillRule;
System\Windows\Media\LineGeometry.cs (2)
181PathStreamGeometryContext ctx = new PathStreamGeometryContext(FillRule.EvenOdd, Transform); 240FillRule = FillRule.EvenOdd,
System\Windows\Media\ParsersCommon.cs (7)
55FillRule fillRule = FillRule.EvenOdd ; 77FillRule fillRule = FillRule.EvenOdd ; 99ref FillRule fillRule 142fillRule = pathString[curIndex] == '0' ? FillRule.EvenOdd : FillRule.Nonzero;
System\Windows\Media\PathGeometry.cs (5)
60public PathGeometry(IEnumerable<PathFigure> figures, FillRule fillRule, Transform transform) 619FillRule fillRule = FillRule.Nonzero; 916FillRule fillRule = FillRule; 925if (fillRule != FillRule.EvenOdd)
System\Windows\Media\PathStreamGeometryContext.cs (3)
27s_defaultFillRule = (FillRule)PathGeometry.FillRuleProperty.GetDefaultValue(typeof(PathGeometry)); 47internal PathStreamGeometryContext(FillRule fillRule, 474private static FillRule s_defaultFillRule;
System\Windows\Media\RectangleGeometry.cs (2)
382PathStreamGeometryContext ctx = new PathStreamGeometryContext(FillRule.EvenOdd, Transform); 401FillRule = FillRule.EvenOdd,
System\Windows\Media\UnsafeNativeMethodsMilCoreApi.cs (11)
78FillRule fillRule, 91FillRule fillRule1, 95FillRule fillRule2, 102out FillRule resultFillRule); 109FillRule fillRule, 115out FillRule widenedFillRule); 120FillRule fillRule, 126out FillRule outlinedFillRule); 131FillRule fillRule, 137out FillRule resultFillRule); 174out FillRule pFillRule
PresentationFramework (10)
System\Windows\Documents\HighlightVisual.cs (2)
243highlightGeometry.FillRule = FillRule.Nonzero; 261highlightGeometry.FillRule = FillRule.Nonzero;
System\Windows\Shapes\Polygon.cs (4)
63typeof(FillRule), 66FillRule.EvenOdd, 74public FillRule FillRule 78return (FillRule)GetValue(FillRuleProperty);
System\Windows\Shapes\Polyline.cs (4)
62typeof(FillRule), 65FillRule.EvenOdd, 73public FillRule FillRule 77return (FillRule)GetValue(FillRuleProperty);
ReachFramework (4)
Serialization\Manager\ReachSerializationUtils.cs (1)
1000geometry.FillRule = FillRule.Nonzero;
Serialization\VisualSerializer.cs (3)
1229if (path.FillRule == FillRule.EvenOdd) 1413private void WriteFillRule(FillRule rule) 1417if (rule == FillRule.Nonzero)