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