3 writes to _topLeft
PresentationFramework (3)
System\Windows\CornerRadius.cs (3)
38
_topLeft
= _topRight = _bottomLeft = _bottomRight = uniformRadius;
50
_topLeft
= topLeft;
160
set {
_topLeft
= value; }
11 references to _topLeft
PresentationFramework (11)
System\Windows\CornerRadius.cs (11)
96
return
_topLeft
.GetHashCode() ^ _topRight.GetHashCode() ^ _bottomLeft.GetHashCode() ^ _bottomRight.GetHashCode();
126
return ( (cr1.
_topLeft
== cr2.
_topLeft
|| (double.IsNaN(cr1.
_topLeft
) && double.IsNaN(cr2.
_topLeft
)))
159
get { return
_topLeft
; }
198
if (
_topLeft
< 0d || _topRight < 0d || _bottomLeft < 0d || _bottomRight < 0d)
206
if (double.IsNaN(
_topLeft
) || double.IsNaN(_topRight) || double.IsNaN(_bottomLeft) || double.IsNaN(_bottomRight))
214
if (Double.IsPositiveInfinity(
_topLeft
) || Double.IsPositiveInfinity(_topRight) || Double.IsPositiveInfinity(_bottomLeft) || Double.IsPositiveInfinity(_bottomRight))
222
if (Double.IsNegativeInfinity(
_topLeft
) || Double.IsNegativeInfinity(_topRight) || Double.IsNegativeInfinity(_bottomLeft) || Double.IsNegativeInfinity(_bottomRight))
235
return ( DoubleUtil.IsZero(
_topLeft
)