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