3 writes to _bottomLeft
PresentationFramework (3)
System\Windows\CornerRadius.cs (3)
38
_topLeft = _topRight =
_bottomLeft
= _bottomRight = uniformRadius;
53
_bottomLeft
= bottomLeft;
182
set {
_bottomLeft
= value; }
11 references to _bottomLeft
PresentationFramework (11)
System\Windows\CornerRadius.cs (11)
97
return _topLeft.GetHashCode() ^ _topRight.GetHashCode() ^
_bottomLeft
.GetHashCode() ^ _bottomRight.GetHashCode();
130
&& (cr1.
_bottomLeft
== cr2.
_bottomLeft
|| (double.IsNaN(cr1.
_bottomLeft
) && double.IsNaN(cr2.
_bottomLeft
)))
181
get { return
_bottomLeft
; }
199
if (_topLeft < 0d || _topRight < 0d ||
_bottomLeft
< 0d || _bottomRight < 0d)
207
if (double.IsNaN(_topLeft) || double.IsNaN(_topRight) || double.IsNaN(
_bottomLeft
) || double.IsNaN(_bottomRight))
215
if (Double.IsPositiveInfinity(_topLeft) || Double.IsPositiveInfinity(_topRight) || Double.IsPositiveInfinity(
_bottomLeft
) || Double.IsPositiveInfinity(_bottomRight))
223
if (Double.IsNegativeInfinity(_topLeft) || Double.IsNegativeInfinity(_topRight) || Double.IsNegativeInfinity(
_bottomLeft
) || Double.IsNegativeInfinity(_bottomRight))
239
&& DoubleUtil.IsZero(
_bottomLeft
)