3 writes to _bottomLeft
PresentationFramework (3)
src\Framework\System\Windows\CornerRadius.cs (3)
40_topLeft = _topRight = _bottomLeft = _bottomRight = uniformRadius; 55_bottomLeft = bottomLeft; 184set { _bottomLeft = value; }
11 references to _bottomLeft
PresentationFramework (11)
src\Framework\System\Windows\CornerRadius.cs (11)
99return _topLeft.GetHashCode() ^ _topRight.GetHashCode() ^ _bottomLeft.GetHashCode() ^ _bottomRight.GetHashCode(); 132&& (cr1._bottomLeft == cr2._bottomLeft || (DoubleUtil.IsNaN(cr1._bottomLeft) && DoubleUtil.IsNaN(cr2._bottomLeft))) 183get { return _bottomLeft; } 201if (_topLeft < 0d || _topRight < 0d || _bottomLeft < 0d || _bottomRight < 0d) 209if (DoubleUtil.IsNaN(_topLeft) || DoubleUtil.IsNaN(_topRight) || DoubleUtil.IsNaN(_bottomLeft) || DoubleUtil.IsNaN(_bottomRight)) 217if (Double.IsPositiveInfinity(_topLeft) || Double.IsPositiveInfinity(_topRight) || Double.IsPositiveInfinity(_bottomLeft) || Double.IsPositiveInfinity(_bottomRight)) 225if (Double.IsNegativeInfinity(_topLeft) || Double.IsNegativeInfinity(_topRight) || Double.IsNegativeInfinity(_bottomLeft) || Double.IsNegativeInfinity(_bottomRight)) 241&& DoubleUtil.IsZero(_bottomLeft)