35 references to PrivateCells
PresentationFramework (35)
src\Framework\System\Windows\Controls\Grid.cs (35)
655
bool canResolveStarsU = extData.CellGroup2 >
PrivateCells
.Length;
757
for (int currentCell = 0; currentCell <
PrivateCells
.Length; ++currentCell)
765
int columnIndex =
PrivateCells
[currentCell].ColumnIndex;
766
int rowIndex =
PrivateCells
[currentCell].RowIndex;
767
int columnSpan =
PrivateCells
[currentCell].ColumnSpan;
768
int rowSpan =
PrivateCells
[currentCell].RowSpan;
963
for (int i =
PrivateCells
.Length - 1; i >= 0; --i)
1043
PrivateCells
[i] = cell;
1211
minSizes[
PrivateCells
[i].RowIndex] = DefinitionsV[
PrivateCells
[i].RowIndex].MinSize;
1215
minSizes[
PrivateCells
[i].ColumnIndex] = DefinitionsU[
PrivateCells
[i].ColumnIndex].MinSize;
1218
i =
PrivateCells
[i].Next;
1220
} while (i <
PrivateCells
.Length);
1272
if (cellsHead >=
PrivateCells
.Length)
1292
if (
PrivateCells
[i].ColumnSpan == 1)
1294
DefinitionsU[
PrivateCells
[i].ColumnIndex].UpdateMinSize(Math.Min(children[i].DesiredSize.Width, DefinitionsU[
PrivateCells
[i].ColumnIndex].UserMaxSize));
1300
PrivateCells
[i].ColumnIndex,
1301
PrivateCells
[i].ColumnSpan,
1309
if (
PrivateCells
[i].RowSpan == 1)
1311
DefinitionsV[
PrivateCells
[i].RowIndex].UpdateMinSize(Math.Min(children[i].DesiredSize.Height, DefinitionsV[
PrivateCells
[i].RowIndex].UserMaxSize));
1317
PrivateCells
[i].RowIndex,
1318
PrivateCells
[i].RowSpan,
1324
i =
PrivateCells
[i].Next;
1325
} while (i <
PrivateCells
.Length);
1389
if (
PrivateCells
[cell].IsAutoU
1390
&& !
PrivateCells
[cell].IsStarU )
1402
PrivateCells
[cell].ColumnIndex,
1403
PrivateCells
[cell].ColumnSpan);
1410
else if (
PrivateCells
[cell].IsAutoV
1411
&& !
PrivateCells
[cell].IsStarV )
1422
PrivateCells
[cell].RowIndex,
1423
PrivateCells
[cell].RowSpan);