100 references to FillRule
PresentationCore (86)
MS\Internal\Ink\StrokeRenderer.cs (2)
48streamGeometry.FillRule = FillRule.Nonzero; 228streamGeometry.FillRule = FillRule.Nonzero;
MS\Internal\KnownBoxes.cs (4)
13internal static object EvenOddBox = FillRule.EvenOdd; 14internal static object NonzeroBox = FillRule.Nonzero; 16internal static object Box(FillRule value) 18if (value == FillRule.Nonzero)
MS\Internal\Media\ParserStreamGeometryContext.cs (7)
83internal void SetFillRule(FillRule fillRule) 382FillRule fillRule; 604private static FillRule BoolToFillRule(bool value) 607return FillRule.EvenOdd; 609return FillRule.Nonzero; 612private static bool FillRuleToBool(FillRule fill) 614if (fill == FillRule.EvenOdd)
src\Microsoft.DotNet.Wpf\src\Common\Graphics\Generated\wgx_commands.cs (2)
862[FieldOffset(12)] internal FillRule FillRule; 881[FieldOffset(12)] internal FillRule FillRule;
src\Microsoft.DotNet.Wpf\src\Shared\MS\Internal\Generated\FillRuleValidation.cs (4)
40FillRule value = (FillRule) valueObject; 42return (value == FillRule.EvenOdd) || 43(value == FillRule.Nonzero);
System\Windows\Media\Composition.cs (5)
218FillRule fillRule, 259FillRule fillRule, 270FillRule fillRule1, 274FillRule fillRule2, 283FillRule fillRule,
System\Windows\Media\EllipseGeometry.cs (2)
303PathStreamGeometryContext ctx = new PathStreamGeometryContext(FillRule.EvenOdd, Transform); 321data.FillRule = FillRule.EvenOdd;
System\Windows\Media\FormattedText.cs (2)
1962accumulatedGeometry.FillRule = FillRule.Nonzero; 2002accumulatedGeometry.FillRule = FillRule.Nonzero;
System\Windows\Media\Generated\GeometryGroup.cs (6)
185public FillRule FillRule 189return (FillRule) GetValue(FillRuleProperty); 482internal const FillRule c_FillRule = FillRule.EvenOdd; 512typeof(FillRule), 514FillRule.EvenOdd,
System\Windows\Media\Generated\PathGeometry.cs (6)
110public FillRule FillRule 114return (FillRule) GetValue(FillRuleProperty); 277internal const FillRule c_FillRule = FillRule.EvenOdd; 307typeof(FillRule), 309FillRule.EvenOdd,
System\Windows\Media\Generated\StreamGeometry.cs (6)
98public FillRule FillRule 102return (FillRule) GetValue(FillRuleProperty); 192internal const FillRule c_FillRule = FillRule.EvenOdd; 219typeof(FillRule), 221FillRule.EvenOdd,
System\Windows\Media\Geometry.cs (8)
624FillRule fillRule = FillRule.Nonzero; 708FillRule fillRule = FillRule.Nonzero; 853FillRule fillRule = FillRule.Nonzero; 969internal FillRule FillRule; 1010data.FillRule = FillRule.EvenOdd;
System\Windows\Media\GlyphRun.cs (1)
1616accumulatedGeometry.FillRule = FillRule.Nonzero;
System\Windows\Media\GlyphTypeface.cs (1)
1268FillRule fillRule;
System\Windows\Media\LineGeometry.cs (2)
199PathStreamGeometryContext ctx = new PathStreamGeometryContext(FillRule.EvenOdd, Transform); 257data.FillRule = FillRule.EvenOdd;
System\Windows\Media\ParsersCommon.cs (7)
68FillRule fillRule = FillRule.EvenOdd ; 90FillRule fillRule = FillRule.EvenOdd ; 112ref FillRule fillRule 155fillRule = pathString[curIndex] == '0' ? FillRule.EvenOdd : FillRule.Nonzero;
System\Windows\Media\PathGeometry.cs (5)
85public PathGeometry(IEnumerable<PathFigure> figures, FillRule fillRule, Transform transform) 643FillRule fillRule = FillRule.Nonzero; 946FillRule fillRule = FillRule; 955if (fillRule != FillRule.EvenOdd)
System\Windows\Media\PathStreamGeometryContext.cs (3)
45s_defaultFillRule = (FillRule)PathGeometry.FillRuleProperty.GetDefaultValue(typeof(PathGeometry)); 65internal PathStreamGeometryContext(FillRule fillRule, 479private static FillRule s_defaultFillRule;
System\Windows\Media\RectangleGeometry.cs (2)
398PathStreamGeometryContext ctx = new PathStreamGeometryContext(FillRule.EvenOdd, Transform); 416data.FillRule = FillRule.EvenOdd;
System\Windows\Media\UnsafeNativeMethodsMilCoreApi.cs (11)
93FillRule fillRule, 106FillRule fillRule1, 110FillRule fillRule2, 117out FillRule resultFillRule); 124FillRule fillRule, 130out FillRule widenedFillRule); 135FillRule fillRule, 141out FillRule outlinedFillRule); 146FillRule fillRule, 152out FillRule resultFillRule); 189out FillRule pFillRule
PresentationFramework (10)
System\Windows\Documents\HighlightVisual.cs (2)
252highlightGeometry.FillRule = FillRule.Nonzero; 270highlightGeometry.FillRule = FillRule.Nonzero;
System\Windows\Shapes\Polygon.cs (4)
71typeof(FillRule), 74FillRule.EvenOdd, 82public FillRule FillRule 86return (FillRule)GetValue(FillRuleProperty);
System\Windows\Shapes\Polyline.cs (4)
70typeof(FillRule), 73FillRule.EvenOdd, 81public FillRule FillRule 85return (FillRule)GetValue(FillRuleProperty);
ReachFramework (4)
Serialization\Manager\ReachSerializationUtils.cs (1)
1013geometry.FillRule = FillRule.Nonzero;
Serialization\VisualSerializer.cs (3)
1237if (path.FillRule == FillRule.EvenOdd) 1421private void WriteFillRule(FillRule rule) 1425if (rule == FillRule.Nonzero)