56 writes to Thickness
PresentationCore (3)
Core\CSharp\MS\Internal\TextFormatting\LineServicesCallbacks.cs (1)
1498textDecorationPen.Thickness = drawingPenThickness;
Core\CSharp\System\Windows\Media\Pen.cs (2)
55Thickness = thickness; 79Thickness = thickness;
PresentationFramework (13)
src\Framework\MS\Internal\PtsHost\ParagraphVisual.cs (4)
96pen.Thickness = _borderThickness.Left; 118pen.Thickness = _borderThickness.Right; 129pen.Thickness = _borderThickness.Top; 140pen.Thickness = _borderThickness.Bottom;
src\Framework\System\Windows\Controls\Border.cs (8)
422pen.Thickness = UIElement.RoundLayoutValue(border.Left, dpi.DpiScaleX); 426pen.Thickness = border.Left; 486pen.Thickness = UIElement.RoundLayoutValue(border.Right, dpi.DpiScaleX); 490pen.Thickness = border.Right; 518pen.Thickness = UIElement.RoundLayoutValue(border.Top, dpi.DpiScaleY); 522pen.Thickness = border.Top; 549pen.Thickness = UIElement.RoundLayoutValue(border.Bottom, dpi.DpiScaleY); 553pen.Thickness = border.Bottom;
src\Framework\System\Windows\Shapes\Shape.cs (1)
498_pen.Thickness = thickness;
PresentationFramework.Aero (34)
Microsoft\Windows\Themes\BulletChrome.cs (21)
918temp.Thickness = 1.5; 942temp.Thickness = 1.5; 965temp.Thickness = 1; 988temp.Thickness = 1; 1010temp.Thickness = 1; 1043temp.Thickness = 1; 1075temp.Thickness = 1; 1385temp.Thickness = 1; 1407temp.Thickness = 1; 1429temp.Thickness = 1; 1452temp.Thickness = 1; 1484temp.Thickness = 1; 1516temp.Thickness = 1; 1548temp.Thickness = 1; 1580temp.Thickness = 1; 1612temp.Thickness = 1; 1644temp.Thickness = 1; 1676temp.Thickness = 1; 1709temp.Thickness = 1; 1740temp.Thickness = 1; 1771temp.Thickness = 1;
Microsoft\Windows\Themes\ButtonChrome.cs (5)
822temp.Thickness = 1; 844temp.Thickness = 1; 867temp.Thickness = 1; 938temp.Thickness = 1; 969temp.Thickness = 1;
Microsoft\Windows\Themes\ListBoxChrome.cs (3)
545temp.Thickness = 1; 580temp.Thickness = 1; 613temp.Thickness = 1;
Microsoft\Windows\Themes\ScrollChrome.cs (5)
1087temp.Thickness = 1; 1111temp.Thickness = 1; 1135temp.Thickness = 1; 1214temp.Thickness = 1; 1285temp.Thickness = 1;
PresentationFramework.Luna (3)
parent\Shared\Microsoft\Windows\Themes\BulletChrome.cs (3)
685temp.Thickness = 1; 708temp.Thickness = 2; 739temp.Thickness = 2;
PresentationFramework.Royale (3)
parent\Shared\Microsoft\Windows\Themes\BulletChrome.cs (3)
685temp.Thickness = 1; 708temp.Thickness = 2; 739temp.Thickness = 2;
26 references to Thickness
PresentationCore (7)
Core\CSharp\MS\Internal\TextFormatting\LineServicesCallbacks.cs (1)
1337penThickness = textDecoration.Pen.Thickness;
Core\CSharp\System\Windows\Media\EllipseGeometry.cs (1)
181strokeThickness = Math.Abs(pen.Thickness);
Core\CSharp\System\Windows\Media\FormattedText.cs (2)
2005bound.Height = geometryDrawing.Pen.Thickness; 2009bound.Width = geometryDrawing.Pen.Thickness;
Core\CSharp\System\Windows\Media\Generated\Pen.cs (1)
418data.Thickness = Thickness;
Core\CSharp\System\Windows\Media\Pen.cs (1)
126pData->Thickness = Thickness;
Core\CSharp\System\Windows\Media\RectangleGeometry.cs (1)
215strokeThickness = Math.Abs(pen.Thickness);
PresentationFramework (17)
src\Framework\MS\Internal\PtsHost\ParagraphVisual.cs (12)
103new Point(_renderBounds.Left + pen.Thickness * 0.5, _renderBounds.Bottom - pen.Thickness * 0.5), 104new Point(_renderBounds.Right - pen.Thickness * 0.5, _renderBounds.Top + pen.Thickness * 0.5))); 111new Point(_renderBounds.Left + pen.Thickness / 2, _renderBounds.Top), 112new Point(_renderBounds.Left + pen.Thickness / 2, _renderBounds.Bottom)); 122new Point(_renderBounds.Right - pen.Thickness / 2, _renderBounds.Top), 123new Point(_renderBounds.Right - pen.Thickness / 2, _renderBounds.Bottom)); 133new Point(_renderBounds.Left, _renderBounds.Top + pen.Thickness / 2), 134new Point(_renderBounds.Right, _renderBounds.Top + pen.Thickness / 2)); 144new Point(_renderBounds.Left, _renderBounds.Bottom - pen.Thickness / 2), 145new Point(_renderBounds.Right, _renderBounds.Bottom - pen.Thickness / 2));
src\Framework\System\Windows\Controls\Border.cs (5)
439halfThickness = pen.Thickness * 0.5; 469halfThickness = pen.Thickness * 0.5; 501halfThickness = pen.Thickness * 0.5; 533halfThickness = pen.Thickness * 0.5; 563halfThickness = pen.Thickness * 0.5;
System.Activities.Presentation (2)
System.Activities.Presentation\System\Activities\Presentation\Base\Core\Internal\PropertyEditing\FromExpression\Framework\ValueEditors\RenderUtils.cs (2)
23if (stroke != null && !Tolerances.NearZero(stroke.Thickness)) 25double halfThickness = stroke.Thickness / 2d;