12 writes to BottomLeft
PresentationFramework.Aero (2)
src\Microsoft.DotNet.Wpf\src\Themes\Shared\Microsoft\Windows\Themes\SystemDropShadowChrome.cs (2)
115cornerRadius.BottomLeft = Math.Min(cornerRadius.BottomLeft, maxRadius); 148cornerRadius.BottomLeft = cornerRadius.BottomLeft + ShadowDepth;
PresentationFramework.Aero2 (2)
src\Microsoft.DotNet.Wpf\src\Themes\Shared\Microsoft\Windows\Themes\SystemDropShadowChrome.cs (2)
115cornerRadius.BottomLeft = Math.Min(cornerRadius.BottomLeft, maxRadius); 148cornerRadius.BottomLeft = cornerRadius.BottomLeft + ShadowDepth;
PresentationFramework.AeroLite (2)
src\Microsoft.DotNet.Wpf\src\Themes\Shared\Microsoft\Windows\Themes\SystemDropShadowChrome.cs (2)
115cornerRadius.BottomLeft = Math.Min(cornerRadius.BottomLeft, maxRadius); 148cornerRadius.BottomLeft = cornerRadius.BottomLeft + ShadowDepth;
PresentationFramework.Classic (2)
src\Microsoft.DotNet.Wpf\src\Themes\Shared\Microsoft\Windows\Themes\SystemDropShadowChrome.cs (2)
115cornerRadius.BottomLeft = Math.Min(cornerRadius.BottomLeft, maxRadius); 148cornerRadius.BottomLeft = cornerRadius.BottomLeft + ShadowDepth;
PresentationFramework.Luna (2)
src\Microsoft.DotNet.Wpf\src\Themes\Shared\Microsoft\Windows\Themes\SystemDropShadowChrome.cs (2)
115cornerRadius.BottomLeft = Math.Min(cornerRadius.BottomLeft, maxRadius); 148cornerRadius.BottomLeft = cornerRadius.BottomLeft + ShadowDepth;
PresentationFramework.Royale (2)
src\Microsoft.DotNet.Wpf\src\Themes\Shared\Microsoft\Windows\Themes\SystemDropShadowChrome.cs (2)
115cornerRadius.BottomLeft = Math.Min(cornerRadius.BottomLeft, maxRadius); 148cornerRadius.BottomLeft = cornerRadius.BottomLeft + ShadowDepth;
108 references to BottomLeft
PresentationFramework (12)
System\Windows\Controls\Border.cs (6)
626DoubleUtil.AreClose(topLeft, borderRadii.BottomLeft) && 967if (DoubleUtil.IsZero(radii.BottomLeft)) 973BottomLeft = radii.BottomLeft + bottom; 974LeftBottom = radii.BottomLeft + left; 985BottomLeft = Math.Max(0.0, radii.BottomLeft - bottom); 986LeftBottom = Math.Max(0.0, radii.BottomLeft - left);
System\Windows\CornerRadiusConverter.cs (2)
145return new InstanceDescriptor(ci, new object[] { cr.TopLeft, cr.TopRight, cr.BottomRight, cr.BottomLeft }); 168return string.Create(cultureInfo, stackalloc char[64], $"{cr.TopLeft}{listSeparator}{cr.TopRight}{listSeparator}{cr.BottomRight}{listSeparator}{cr.BottomLeft}");
System\Windows\Shell\WindowChromeWorker.cs (3)
841double bottomLeftRadius = DpiHelper.LogicalPixelsToDevice(new Point(_chromeInfo.CornerRadius.BottomLeft, 0), dpi.DpiScaleX, dpi.DpiScaleY).X; 915if (!DoubleUtilities.AreClose(cornerRadius.BottomLeft, cornerRadius.BottomRight)) 925if (!DoubleUtilities.AreClose(cornerRadius.BottomLeft, cornerRadius.TopRight))
System\Windows\Standard\Utilities.cs (1)
284if (!IsDoubleFiniteAndNonNegative(cornerRadius.BottomLeft))
PresentationFramework.Aero (16)
src\Microsoft.DotNet.Wpf\src\Themes\Shared\Microsoft\Windows\Themes\SystemDropShadowChrome.cs (16)
68return !(cr.TopLeft < 0.0 || cr.TopRight < 0.0 || cr.BottomLeft < 0.0 || cr.BottomRight < 0.0 || 69double.IsNaN(cr.TopLeft) || double.IsNaN(cr.TopRight) || double.IsNaN(cr.BottomLeft) || double.IsNaN(cr.BottomRight) || 70double.IsInfinity(cr.TopLeft) || double.IsInfinity(cr.TopRight) || double.IsInfinity(cr.BottomLeft) || double.IsInfinity(cr.BottomRight)); 115cornerRadius.BottomLeft = Math.Min(cornerRadius.BottomLeft, maxRadius); 131centerLeft + cornerRadius.BottomLeft, 138centerBottom - cornerRadius.BottomLeft, 148cornerRadius.BottomLeft = cornerRadius.BottomLeft + ShadowDepth; 182Rect bottomLeft = new Rect(shadowBounds.Left, guidelineSetY[3], cornerRadius.BottomLeft, cornerRadius.BottomLeft); 205cornerRadius.TopLeft == cornerRadius.BottomLeft && 238if (cornerRadius.BottomLeft > ShadowDepth) 386if (cornerRadius.BottomLeft == 0) 388else if (cornerRadius.BottomLeft == cornerRadius.TopLeft) 390else if (cornerRadius.BottomLeft == cornerRadius.TopRight) 393bottomLeftStops = CreateStops(c, cornerRadius.BottomLeft); 411else if (cornerRadius.BottomRight == cornerRadius.BottomLeft)
PresentationFramework.Aero2 (16)
src\Microsoft.DotNet.Wpf\src\Themes\Shared\Microsoft\Windows\Themes\SystemDropShadowChrome.cs (16)
68return !(cr.TopLeft < 0.0 || cr.TopRight < 0.0 || cr.BottomLeft < 0.0 || cr.BottomRight < 0.0 || 69double.IsNaN(cr.TopLeft) || double.IsNaN(cr.TopRight) || double.IsNaN(cr.BottomLeft) || double.IsNaN(cr.BottomRight) || 70double.IsInfinity(cr.TopLeft) || double.IsInfinity(cr.TopRight) || double.IsInfinity(cr.BottomLeft) || double.IsInfinity(cr.BottomRight)); 115cornerRadius.BottomLeft = Math.Min(cornerRadius.BottomLeft, maxRadius); 131centerLeft + cornerRadius.BottomLeft, 138centerBottom - cornerRadius.BottomLeft, 148cornerRadius.BottomLeft = cornerRadius.BottomLeft + ShadowDepth; 182Rect bottomLeft = new Rect(shadowBounds.Left, guidelineSetY[3], cornerRadius.BottomLeft, cornerRadius.BottomLeft); 205cornerRadius.TopLeft == cornerRadius.BottomLeft && 238if (cornerRadius.BottomLeft > ShadowDepth) 386if (cornerRadius.BottomLeft == 0) 388else if (cornerRadius.BottomLeft == cornerRadius.TopLeft) 390else if (cornerRadius.BottomLeft == cornerRadius.TopRight) 393bottomLeftStops = CreateStops(c, cornerRadius.BottomLeft); 411else if (cornerRadius.BottomRight == cornerRadius.BottomLeft)
PresentationFramework.AeroLite (16)
src\Microsoft.DotNet.Wpf\src\Themes\Shared\Microsoft\Windows\Themes\SystemDropShadowChrome.cs (16)
68return !(cr.TopLeft < 0.0 || cr.TopRight < 0.0 || cr.BottomLeft < 0.0 || cr.BottomRight < 0.0 || 69double.IsNaN(cr.TopLeft) || double.IsNaN(cr.TopRight) || double.IsNaN(cr.BottomLeft) || double.IsNaN(cr.BottomRight) || 70double.IsInfinity(cr.TopLeft) || double.IsInfinity(cr.TopRight) || double.IsInfinity(cr.BottomLeft) || double.IsInfinity(cr.BottomRight)); 115cornerRadius.BottomLeft = Math.Min(cornerRadius.BottomLeft, maxRadius); 131centerLeft + cornerRadius.BottomLeft, 138centerBottom - cornerRadius.BottomLeft, 148cornerRadius.BottomLeft = cornerRadius.BottomLeft + ShadowDepth; 182Rect bottomLeft = new Rect(shadowBounds.Left, guidelineSetY[3], cornerRadius.BottomLeft, cornerRadius.BottomLeft); 205cornerRadius.TopLeft == cornerRadius.BottomLeft && 238if (cornerRadius.BottomLeft > ShadowDepth) 386if (cornerRadius.BottomLeft == 0) 388else if (cornerRadius.BottomLeft == cornerRadius.TopLeft) 390else if (cornerRadius.BottomLeft == cornerRadius.TopRight) 393bottomLeftStops = CreateStops(c, cornerRadius.BottomLeft); 411else if (cornerRadius.BottomRight == cornerRadius.BottomLeft)
PresentationFramework.Classic (16)
src\Microsoft.DotNet.Wpf\src\Themes\Shared\Microsoft\Windows\Themes\SystemDropShadowChrome.cs (16)
68return !(cr.TopLeft < 0.0 || cr.TopRight < 0.0 || cr.BottomLeft < 0.0 || cr.BottomRight < 0.0 || 69double.IsNaN(cr.TopLeft) || double.IsNaN(cr.TopRight) || double.IsNaN(cr.BottomLeft) || double.IsNaN(cr.BottomRight) || 70double.IsInfinity(cr.TopLeft) || double.IsInfinity(cr.TopRight) || double.IsInfinity(cr.BottomLeft) || double.IsInfinity(cr.BottomRight)); 115cornerRadius.BottomLeft = Math.Min(cornerRadius.BottomLeft, maxRadius); 131centerLeft + cornerRadius.BottomLeft, 138centerBottom - cornerRadius.BottomLeft, 148cornerRadius.BottomLeft = cornerRadius.BottomLeft + ShadowDepth; 182Rect bottomLeft = new Rect(shadowBounds.Left, guidelineSetY[3], cornerRadius.BottomLeft, cornerRadius.BottomLeft); 205cornerRadius.TopLeft == cornerRadius.BottomLeft && 238if (cornerRadius.BottomLeft > ShadowDepth) 386if (cornerRadius.BottomLeft == 0) 388else if (cornerRadius.BottomLeft == cornerRadius.TopLeft) 390else if (cornerRadius.BottomLeft == cornerRadius.TopRight) 393bottomLeftStops = CreateStops(c, cornerRadius.BottomLeft); 411else if (cornerRadius.BottomRight == cornerRadius.BottomLeft)
PresentationFramework.Luna (16)
src\Microsoft.DotNet.Wpf\src\Themes\Shared\Microsoft\Windows\Themes\SystemDropShadowChrome.cs (16)
68return !(cr.TopLeft < 0.0 || cr.TopRight < 0.0 || cr.BottomLeft < 0.0 || cr.BottomRight < 0.0 || 69double.IsNaN(cr.TopLeft) || double.IsNaN(cr.TopRight) || double.IsNaN(cr.BottomLeft) || double.IsNaN(cr.BottomRight) || 70double.IsInfinity(cr.TopLeft) || double.IsInfinity(cr.TopRight) || double.IsInfinity(cr.BottomLeft) || double.IsInfinity(cr.BottomRight)); 115cornerRadius.BottomLeft = Math.Min(cornerRadius.BottomLeft, maxRadius); 131centerLeft + cornerRadius.BottomLeft, 138centerBottom - cornerRadius.BottomLeft, 148cornerRadius.BottomLeft = cornerRadius.BottomLeft + ShadowDepth; 182Rect bottomLeft = new Rect(shadowBounds.Left, guidelineSetY[3], cornerRadius.BottomLeft, cornerRadius.BottomLeft); 205cornerRadius.TopLeft == cornerRadius.BottomLeft && 238if (cornerRadius.BottomLeft > ShadowDepth) 386if (cornerRadius.BottomLeft == 0) 388else if (cornerRadius.BottomLeft == cornerRadius.TopLeft) 390else if (cornerRadius.BottomLeft == cornerRadius.TopRight) 393bottomLeftStops = CreateStops(c, cornerRadius.BottomLeft); 411else if (cornerRadius.BottomRight == cornerRadius.BottomLeft)
PresentationFramework.Royale (16)
src\Microsoft.DotNet.Wpf\src\Themes\Shared\Microsoft\Windows\Themes\SystemDropShadowChrome.cs (16)
68return !(cr.TopLeft < 0.0 || cr.TopRight < 0.0 || cr.BottomLeft < 0.0 || cr.BottomRight < 0.0 || 69double.IsNaN(cr.TopLeft) || double.IsNaN(cr.TopRight) || double.IsNaN(cr.BottomLeft) || double.IsNaN(cr.BottomRight) || 70double.IsInfinity(cr.TopLeft) || double.IsInfinity(cr.TopRight) || double.IsInfinity(cr.BottomLeft) || double.IsInfinity(cr.BottomRight)); 115cornerRadius.BottomLeft = Math.Min(cornerRadius.BottomLeft, maxRadius); 131centerLeft + cornerRadius.BottomLeft, 138centerBottom - cornerRadius.BottomLeft, 148cornerRadius.BottomLeft = cornerRadius.BottomLeft + ShadowDepth; 182Rect bottomLeft = new Rect(shadowBounds.Left, guidelineSetY[3], cornerRadius.BottomLeft, cornerRadius.BottomLeft); 205cornerRadius.TopLeft == cornerRadius.BottomLeft && 238if (cornerRadius.BottomLeft > ShadowDepth) 386if (cornerRadius.BottomLeft == 0) 388else if (cornerRadius.BottomLeft == cornerRadius.TopLeft) 390else if (cornerRadius.BottomLeft == cornerRadius.TopRight) 393bottomLeftStops = CreateStops(c, cornerRadius.BottomLeft); 411else if (cornerRadius.BottomRight == cornerRadius.BottomLeft)