35 references to PrivateCells
PresentationFramework (35)
System\Windows\Controls\Grid.cs (35)
581
bool canResolveStarsU = extData.CellGroup2 >
PrivateCells
.Length;
679
for (int currentCell = 0; currentCell <
PrivateCells
.Length; ++currentCell)
687
int columnIndex =
PrivateCells
[currentCell].ColumnIndex;
688
int rowIndex =
PrivateCells
[currentCell].RowIndex;
689
int columnSpan =
PrivateCells
[currentCell].ColumnSpan;
690
int rowSpan =
PrivateCells
[currentCell].RowSpan;
882
for (int i =
PrivateCells
.Length - 1; i >= 0; --i)
963
PrivateCells
[i] = cell;
1131
minSizes[
PrivateCells
[i].RowIndex] = DefinitionsV[
PrivateCells
[i].RowIndex].RawMinSize;
1135
minSizes[
PrivateCells
[i].ColumnIndex] = DefinitionsU[
PrivateCells
[i].ColumnIndex].RawMinSize;
1138
i =
PrivateCells
[i].Next;
1139
} while (i <
PrivateCells
.Length);
1191
if (cellsHead >=
PrivateCells
.Length)
1211
if (
PrivateCells
[i].ColumnSpan == 1)
1213
DefinitionsU[
PrivateCells
[i].ColumnIndex].UpdateMinSize(Math.Min(children[i].DesiredSize.Width, DefinitionsU[
PrivateCells
[i].ColumnIndex].UserMaxSize));
1219
PrivateCells
[i].ColumnIndex,
1220
PrivateCells
[i].ColumnSpan,
1228
if (
PrivateCells
[i].RowSpan == 1)
1230
DefinitionsV[
PrivateCells
[i].RowIndex].UpdateMinSize(Math.Min(children[i].DesiredSize.Height, DefinitionsV[
PrivateCells
[i].RowIndex].UserMaxSize));
1236
PrivateCells
[i].RowIndex,
1237
PrivateCells
[i].RowSpan,
1243
i =
PrivateCells
[i].Next;
1244
} while (i <
PrivateCells
.Length);
1308
if (
PrivateCells
[cell].IsAutoU
1309
&& !
PrivateCells
[cell].IsStarU )
1321
PrivateCells
[cell].ColumnIndex,
1322
PrivateCells
[cell].ColumnSpan);
1329
else if (
PrivateCells
[cell].IsAutoV
1330
&& !
PrivateCells
[cell].IsStarV )
1341
PrivateCells
[cell].RowIndex,
1342
PrivateCells
[cell].RowSpan);