3 writes to _columns
PresentationFramework (3)
src\Framework\System\Windows\Controls\Primitives\UniformGrid.cs (3)
263
_columns
= Columns;
310
_columns
= _rows;
316
_columns
= (nonCollapsedCount + (_rows - 1)) / _rows;
9 references to _columns
PresentationFramework (9)
src\Framework\System\Windows\Controls\Primitives\UniformGrid.cs (9)
182
Size childConstraint = new Size(constraint.Width /
_columns
, constraint.Height / _rows);
206
return new Size((maxChildDesiredWidth *
_columns
),(maxChildDesiredHeight * _rows));
218
Rect childBounds = new Rect(0, 0, arrangeSize.Width /
_columns
, arrangeSize.Height / _rows);
267
if (FirstColumn >=
_columns
)
274
if ((_rows == 0) || (
_columns
== 0))
297
if (
_columns
> 0)
300
_rows = (nonCollapsedCount + FirstColumn + (
_columns
- 1)) /
_columns
;
313
else if (
_columns
== 0)