96 references to FillRule
PresentationCore (86)
Core\CSharp\MS\Internal\Ink\StrokeRenderer.cs (2)
51streamGeometry.FillRule = FillRule.Nonzero; 234streamGeometry.FillRule = FillRule.Nonzero;
Core\CSharp\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)
Core\CSharp\MS\Internal\Media\ParserStreamGeometrycontext.cs (7)
86internal void SetFillRule(FillRule fillRule) 385FillRule fillRule; 608private static FillRule BoolToFillRule(bool value) 611return FillRule.EvenOdd; 613return FillRule.Nonzero; 616private static bool FillRuleToBool(FillRule fill) 618if (fill == FillRule.EvenOdd)
Core\CSharp\System\Windows\Media\Composition.cs (5)
230FillRule fillRule, 286FillRule fillRule, 302FillRule fillRule1, 306FillRule fillRule2, 320FillRule fillRule,
Core\CSharp\System\Windows\Media\EllipseGeometry.cs (2)
320PathStreamGeometryContext ctx = new PathStreamGeometryContext(FillRule.EvenOdd, Transform); 338data.FillRule = FillRule.EvenOdd;
Core\CSharp\System\Windows\Media\FormattedText.cs (2)
1979accumulatedGeometry.FillRule = FillRule.Nonzero; 2019accumulatedGeometry.FillRule = FillRule.Nonzero;
Core\CSharp\System\Windows\Media\Generated\GeometryGroup.cs (6)
195public FillRule FillRule 199return (FillRule) GetValue(FillRuleProperty); 503internal const FillRule c_FillRule = FillRule.EvenOdd; 533typeof(FillRule), 535FillRule.EvenOdd,
Core\CSharp\System\Windows\Media\Generated\PathGeometry.cs (6)
117public FillRule FillRule 121return (FillRule) GetValue(FillRuleProperty); 295internal const FillRule c_FillRule = FillRule.EvenOdd; 325typeof(FillRule), 327FillRule.EvenOdd,
Core\CSharp\System\Windows\Media\Generated\StreamGeometry.cs (6)
104public FillRule FillRule 108return (FillRule) GetValue(FillRuleProperty); 198internal const FillRule c_FillRule = FillRule.EvenOdd; 225typeof(FillRule), 227FillRule.EvenOdd,
Core\CSharp\System\Windows\Media\Geometry.cs (8)
651FillRule fillRule = FillRule.Nonzero; 748FillRule fillRule = FillRule.Nonzero; 899FillRule fillRule = FillRule.Nonzero; 1020internal FillRule FillRule; 1071data.FillRule = FillRule.EvenOdd;
Core\CSharp\System\Windows\Media\GlyphRun.cs (1)
1629accumulatedGeometry.FillRule = FillRule.Nonzero;
Core\CSharp\System\Windows\Media\GlyphTypeface.cs (1)
1612FillRule fillRule;
Core\CSharp\System\Windows\Media\LineGeometry.cs (2)
216PathStreamGeometryContext ctx = new PathStreamGeometryContext(FillRule.EvenOdd, Transform); 274data.FillRule = FillRule.EvenOdd;
Core\CSharp\System\Windows\Media\ParsersCommon.cs (7)
73FillRule fillRule = FillRule.EvenOdd ; 95FillRule fillRule = FillRule.EvenOdd ; 117ref FillRule fillRule 160fillRule = pathString[curIndex] == '0' ? FillRule.EvenOdd : FillRule.Nonzero;
Core\CSharp\System\Windows\Media\PathGeometry.cs (5)
92public PathGeometry(IEnumerable<PathFigure> figures, FillRule fillRule, Transform transform) 686FillRule fillRule = FillRule.Nonzero; 1000FillRule fillRule = FillRule; 1009if (fillRule != FillRule.EvenOdd)
Core\CSharp\System\Windows\Media\PathStreamGeometryContext.cs (3)
48s_defaultFillRule = (FillRule)PathGeometry.FillRuleProperty.GetDefaultValue(typeof(PathGeometry)); 68internal PathStreamGeometryContext(FillRule fillRule, 482private static FillRule s_defaultFillRule;
Core\CSharp\System\Windows\Media\RectangleGeometry.cs (2)
413PathStreamGeometryContext ctx = new PathStreamGeometryContext(FillRule.EvenOdd, Transform); 431data.FillRule = FillRule.EvenOdd;
Core\CSharp\System\Windows\Media\UnsafeNativeMethodsMilCoreApi.cs (11)
131FillRule fillRule, 148FillRule fillRule1, 152FillRule fillRule2, 159out FillRule resultFillRule); 170FillRule fillRule, 176out FillRule widenedFillRule); 185FillRule fillRule, 191out FillRule outlinedFillRule); 200FillRule fillRule, 206out FillRule resultFillRule); 268out FillRule pFillRule
Graphics\include\Generated\wgx_commands.cs (2)
863[FieldOffset(12)] internal FillRule FillRule; 882[FieldOffset(12)] internal FillRule FillRule;
Shared\MS\Internal\Generated\FillRuleValidation.cs (4)
40FillRule value = (FillRule) valueObject; 42return (value == FillRule.EvenOdd) || 43(value == FillRule.Nonzero);
PresentationFramework (10)
src\Framework\System\Windows\Documents\HighlightVisual.cs (2)
255highlightGeometry.FillRule = FillRule.Nonzero; 273highlightGeometry.FillRule = FillRule.Nonzero;
src\Framework\System\Windows\Shapes\Polygon.cs (4)
74typeof(FillRule), 77FillRule.EvenOdd, 85public FillRule FillRule 89return (FillRule)GetValue(FillRuleProperty);
src\Framework\System\Windows\Shapes\Polyline.cs (4)
73typeof(FillRule), 76FillRule.EvenOdd, 84public FillRule FillRule 88return (FillRule)GetValue(FillRuleProperty);