3 writes to _topRight
PresentationFramework (3)
System\Windows\CornerRadius.cs (3)
37_topLeft = _topRight = _bottomLeft = _bottomRight = uniformRadius; 50_topRight = topRight; 166set { _topRight = value; }
11 references to _topRight
PresentationFramework (11)
System\Windows\CornerRadius.cs (11)
95return _topLeft.GetHashCode() ^ _topRight.GetHashCode() ^ _bottomLeft.GetHashCode() ^ _bottomRight.GetHashCode(); 126&& (cr1._topRight == cr2._topRight || (double.IsNaN(cr1._topRight) && double.IsNaN(cr2._topRight))) 165get { return _topRight; } 197if (_topLeft < 0d || _topRight < 0d || _bottomLeft < 0d || _bottomRight < 0d) 205if (double.IsNaN(_topLeft) || double.IsNaN(_topRight) || double.IsNaN(_bottomLeft) || double.IsNaN(_bottomRight)) 213if (Double.IsPositiveInfinity(_topLeft) || Double.IsPositiveInfinity(_topRight) || Double.IsPositiveInfinity(_bottomLeft) || Double.IsPositiveInfinity(_bottomRight)) 221if (Double.IsNegativeInfinity(_topLeft) || Double.IsNegativeInfinity(_topRight) || Double.IsNegativeInfinity(_bottomLeft) || Double.IsNegativeInfinity(_bottomRight)) 235&& DoubleUtil.IsZero(_topRight)