12 writes to BottomLeft
PresentationFramework.Aero (2)
src\Microsoft.DotNet.Wpf\src\Themes\Shared\Microsoft\Windows\Themes\SystemDropShadowChrome.cs (2)
119cornerRadius.BottomLeft = Math.Min(cornerRadius.BottomLeft, maxRadius); 152cornerRadius.BottomLeft = cornerRadius.BottomLeft + ShadowDepth;
PresentationFramework.Aero2 (2)
src\Microsoft.DotNet.Wpf\src\Themes\Shared\Microsoft\Windows\Themes\SystemDropShadowChrome.cs (2)
119cornerRadius.BottomLeft = Math.Min(cornerRadius.BottomLeft, maxRadius); 152cornerRadius.BottomLeft = cornerRadius.BottomLeft + ShadowDepth;
PresentationFramework.AeroLite (2)
src\Microsoft.DotNet.Wpf\src\Themes\Shared\Microsoft\Windows\Themes\SystemDropShadowChrome.cs (2)
119cornerRadius.BottomLeft = Math.Min(cornerRadius.BottomLeft, maxRadius); 152cornerRadius.BottomLeft = cornerRadius.BottomLeft + ShadowDepth;
PresentationFramework.Classic (2)
src\Microsoft.DotNet.Wpf\src\Themes\Shared\Microsoft\Windows\Themes\SystemDropShadowChrome.cs (2)
119cornerRadius.BottomLeft = Math.Min(cornerRadius.BottomLeft, maxRadius); 152cornerRadius.BottomLeft = cornerRadius.BottomLeft + ShadowDepth;
PresentationFramework.Luna (2)
src\Microsoft.DotNet.Wpf\src\Themes\Shared\Microsoft\Windows\Themes\SystemDropShadowChrome.cs (2)
119cornerRadius.BottomLeft = Math.Min(cornerRadius.BottomLeft, maxRadius); 152cornerRadius.BottomLeft = cornerRadius.BottomLeft + ShadowDepth;
PresentationFramework.Royale (2)
src\Microsoft.DotNet.Wpf\src\Themes\Shared\Microsoft\Windows\Themes\SystemDropShadowChrome.cs (2)
119cornerRadius.BottomLeft = Math.Min(cornerRadius.BottomLeft, maxRadius); 152cornerRadius.BottomLeft = cornerRadius.BottomLeft + ShadowDepth;
108 references to BottomLeft
PresentationFramework (12)
System\Windows\Controls\Border.cs (6)
630DoubleUtil.AreClose(topLeft, borderRadii.BottomLeft) && 971if (DoubleUtil.IsZero(radii.BottomLeft)) 977BottomLeft = radii.BottomLeft + bottom; 978LeftBottom = radii.BottomLeft + left; 989BottomLeft = Math.Max(0.0, radii.BottomLeft - bottom); 990LeftBottom = Math.Max(0.0, radii.BottomLeft - left);
System\Windows\CornerRadiusConverter.cs (2)
150return new InstanceDescriptor(ci, new object[] { cr.TopLeft, cr.TopRight, cr.BottomRight, cr.BottomLeft }); 173return string.Create(cultureInfo, stackalloc char[64], $"{cr.TopLeft}{listSeparator}{cr.TopRight}{listSeparator}{cr.BottomRight}{listSeparator}{cr.BottomLeft}");
System\Windows\Shell\WindowChromeWorker.cs (3)
1091double bottomLeftRadius = DpiHelper.LogicalPixelsToDevice(new Point(_chromeInfo.CornerRadius.BottomLeft, 0), dpi.DpiScaleX, dpi.DpiScaleY).X; 1165if (!DoubleUtilities.AreClose(cornerRadius.BottomLeft, cornerRadius.BottomRight)) 1175if (!DoubleUtilities.AreClose(cornerRadius.BottomLeft, cornerRadius.TopRight))
System\Windows\Standard\Utilities.cs (1)
327if (!IsDoubleFiniteAndNonNegative(cornerRadius.BottomLeft))
PresentationFramework.Aero (16)
src\Microsoft.DotNet.Wpf\src\Themes\Shared\Microsoft\Windows\Themes\SystemDropShadowChrome.cs (16)
72return !(cr.TopLeft < 0.0 || cr.TopRight < 0.0 || cr.BottomLeft < 0.0 || cr.BottomRight < 0.0 || 73double.IsNaN(cr.TopLeft) || double.IsNaN(cr.TopRight) || double.IsNaN(cr.BottomLeft) || double.IsNaN(cr.BottomRight) || 74double.IsInfinity(cr.TopLeft) || double.IsInfinity(cr.TopRight) || double.IsInfinity(cr.BottomLeft) || double.IsInfinity(cr.BottomRight)); 119cornerRadius.BottomLeft = Math.Min(cornerRadius.BottomLeft, maxRadius); 135centerLeft + cornerRadius.BottomLeft, 142centerBottom - cornerRadius.BottomLeft, 152cornerRadius.BottomLeft = cornerRadius.BottomLeft + ShadowDepth; 186Rect bottomLeft = new Rect(shadowBounds.Left, guidelineSetY[3], cornerRadius.BottomLeft, cornerRadius.BottomLeft); 209cornerRadius.TopLeft == cornerRadius.BottomLeft && 242if (cornerRadius.BottomLeft > ShadowDepth) 390if (cornerRadius.BottomLeft == 0) 392else if (cornerRadius.BottomLeft == cornerRadius.TopLeft) 394else if (cornerRadius.BottomLeft == cornerRadius.TopRight) 397bottomLeftStops = CreateStops(c, cornerRadius.BottomLeft); 415else if (cornerRadius.BottomRight == cornerRadius.BottomLeft)
PresentationFramework.Aero2 (16)
src\Microsoft.DotNet.Wpf\src\Themes\Shared\Microsoft\Windows\Themes\SystemDropShadowChrome.cs (16)
72return !(cr.TopLeft < 0.0 || cr.TopRight < 0.0 || cr.BottomLeft < 0.0 || cr.BottomRight < 0.0 || 73double.IsNaN(cr.TopLeft) || double.IsNaN(cr.TopRight) || double.IsNaN(cr.BottomLeft) || double.IsNaN(cr.BottomRight) || 74double.IsInfinity(cr.TopLeft) || double.IsInfinity(cr.TopRight) || double.IsInfinity(cr.BottomLeft) || double.IsInfinity(cr.BottomRight)); 119cornerRadius.BottomLeft = Math.Min(cornerRadius.BottomLeft, maxRadius); 135centerLeft + cornerRadius.BottomLeft, 142centerBottom - cornerRadius.BottomLeft, 152cornerRadius.BottomLeft = cornerRadius.BottomLeft + ShadowDepth; 186Rect bottomLeft = new Rect(shadowBounds.Left, guidelineSetY[3], cornerRadius.BottomLeft, cornerRadius.BottomLeft); 209cornerRadius.TopLeft == cornerRadius.BottomLeft && 242if (cornerRadius.BottomLeft > ShadowDepth) 390if (cornerRadius.BottomLeft == 0) 392else if (cornerRadius.BottomLeft == cornerRadius.TopLeft) 394else if (cornerRadius.BottomLeft == cornerRadius.TopRight) 397bottomLeftStops = CreateStops(c, cornerRadius.BottomLeft); 415else if (cornerRadius.BottomRight == cornerRadius.BottomLeft)
PresentationFramework.AeroLite (16)
src\Microsoft.DotNet.Wpf\src\Themes\Shared\Microsoft\Windows\Themes\SystemDropShadowChrome.cs (16)
72return !(cr.TopLeft < 0.0 || cr.TopRight < 0.0 || cr.BottomLeft < 0.0 || cr.BottomRight < 0.0 || 73double.IsNaN(cr.TopLeft) || double.IsNaN(cr.TopRight) || double.IsNaN(cr.BottomLeft) || double.IsNaN(cr.BottomRight) || 74double.IsInfinity(cr.TopLeft) || double.IsInfinity(cr.TopRight) || double.IsInfinity(cr.BottomLeft) || double.IsInfinity(cr.BottomRight)); 119cornerRadius.BottomLeft = Math.Min(cornerRadius.BottomLeft, maxRadius); 135centerLeft + cornerRadius.BottomLeft, 142centerBottom - cornerRadius.BottomLeft, 152cornerRadius.BottomLeft = cornerRadius.BottomLeft + ShadowDepth; 186Rect bottomLeft = new Rect(shadowBounds.Left, guidelineSetY[3], cornerRadius.BottomLeft, cornerRadius.BottomLeft); 209cornerRadius.TopLeft == cornerRadius.BottomLeft && 242if (cornerRadius.BottomLeft > ShadowDepth) 390if (cornerRadius.BottomLeft == 0) 392else if (cornerRadius.BottomLeft == cornerRadius.TopLeft) 394else if (cornerRadius.BottomLeft == cornerRadius.TopRight) 397bottomLeftStops = CreateStops(c, cornerRadius.BottomLeft); 415else if (cornerRadius.BottomRight == cornerRadius.BottomLeft)
PresentationFramework.Classic (16)
src\Microsoft.DotNet.Wpf\src\Themes\Shared\Microsoft\Windows\Themes\SystemDropShadowChrome.cs (16)
72return !(cr.TopLeft < 0.0 || cr.TopRight < 0.0 || cr.BottomLeft < 0.0 || cr.BottomRight < 0.0 || 73double.IsNaN(cr.TopLeft) || double.IsNaN(cr.TopRight) || double.IsNaN(cr.BottomLeft) || double.IsNaN(cr.BottomRight) || 74double.IsInfinity(cr.TopLeft) || double.IsInfinity(cr.TopRight) || double.IsInfinity(cr.BottomLeft) || double.IsInfinity(cr.BottomRight)); 119cornerRadius.BottomLeft = Math.Min(cornerRadius.BottomLeft, maxRadius); 135centerLeft + cornerRadius.BottomLeft, 142centerBottom - cornerRadius.BottomLeft, 152cornerRadius.BottomLeft = cornerRadius.BottomLeft + ShadowDepth; 186Rect bottomLeft = new Rect(shadowBounds.Left, guidelineSetY[3], cornerRadius.BottomLeft, cornerRadius.BottomLeft); 209cornerRadius.TopLeft == cornerRadius.BottomLeft && 242if (cornerRadius.BottomLeft > ShadowDepth) 390if (cornerRadius.BottomLeft == 0) 392else if (cornerRadius.BottomLeft == cornerRadius.TopLeft) 394else if (cornerRadius.BottomLeft == cornerRadius.TopRight) 397bottomLeftStops = CreateStops(c, cornerRadius.BottomLeft); 415else if (cornerRadius.BottomRight == cornerRadius.BottomLeft)
PresentationFramework.Luna (16)
src\Microsoft.DotNet.Wpf\src\Themes\Shared\Microsoft\Windows\Themes\SystemDropShadowChrome.cs (16)
72return !(cr.TopLeft < 0.0 || cr.TopRight < 0.0 || cr.BottomLeft < 0.0 || cr.BottomRight < 0.0 || 73double.IsNaN(cr.TopLeft) || double.IsNaN(cr.TopRight) || double.IsNaN(cr.BottomLeft) || double.IsNaN(cr.BottomRight) || 74double.IsInfinity(cr.TopLeft) || double.IsInfinity(cr.TopRight) || double.IsInfinity(cr.BottomLeft) || double.IsInfinity(cr.BottomRight)); 119cornerRadius.BottomLeft = Math.Min(cornerRadius.BottomLeft, maxRadius); 135centerLeft + cornerRadius.BottomLeft, 142centerBottom - cornerRadius.BottomLeft, 152cornerRadius.BottomLeft = cornerRadius.BottomLeft + ShadowDepth; 186Rect bottomLeft = new Rect(shadowBounds.Left, guidelineSetY[3], cornerRadius.BottomLeft, cornerRadius.BottomLeft); 209cornerRadius.TopLeft == cornerRadius.BottomLeft && 242if (cornerRadius.BottomLeft > ShadowDepth) 390if (cornerRadius.BottomLeft == 0) 392else if (cornerRadius.BottomLeft == cornerRadius.TopLeft) 394else if (cornerRadius.BottomLeft == cornerRadius.TopRight) 397bottomLeftStops = CreateStops(c, cornerRadius.BottomLeft); 415else if (cornerRadius.BottomRight == cornerRadius.BottomLeft)
PresentationFramework.Royale (16)
src\Microsoft.DotNet.Wpf\src\Themes\Shared\Microsoft\Windows\Themes\SystemDropShadowChrome.cs (16)
72return !(cr.TopLeft < 0.0 || cr.TopRight < 0.0 || cr.BottomLeft < 0.0 || cr.BottomRight < 0.0 || 73double.IsNaN(cr.TopLeft) || double.IsNaN(cr.TopRight) || double.IsNaN(cr.BottomLeft) || double.IsNaN(cr.BottomRight) || 74double.IsInfinity(cr.TopLeft) || double.IsInfinity(cr.TopRight) || double.IsInfinity(cr.BottomLeft) || double.IsInfinity(cr.BottomRight)); 119cornerRadius.BottomLeft = Math.Min(cornerRadius.BottomLeft, maxRadius); 135centerLeft + cornerRadius.BottomLeft, 142centerBottom - cornerRadius.BottomLeft, 152cornerRadius.BottomLeft = cornerRadius.BottomLeft + ShadowDepth; 186Rect bottomLeft = new Rect(shadowBounds.Left, guidelineSetY[3], cornerRadius.BottomLeft, cornerRadius.BottomLeft); 209cornerRadius.TopLeft == cornerRadius.BottomLeft && 242if (cornerRadius.BottomLeft > ShadowDepth) 390if (cornerRadius.BottomLeft == 0) 392else if (cornerRadius.BottomLeft == cornerRadius.TopLeft) 394else if (cornerRadius.BottomLeft == cornerRadius.TopRight) 397bottomLeftStops = CreateStops(c, cornerRadius.BottomLeft); 415else if (cornerRadius.BottomRight == cornerRadius.BottomLeft)