35 references to PrivateCells
PresentationFramework (35)
System\Windows\Controls\Grid.cs (35)
582
bool canResolveStarsU = extData.CellGroup2 >
PrivateCells
.Length;
680
for (int currentCell = 0; currentCell <
PrivateCells
.Length; ++currentCell)
688
int columnIndex =
PrivateCells
[currentCell].ColumnIndex;
689
int rowIndex =
PrivateCells
[currentCell].RowIndex;
690
int columnSpan =
PrivateCells
[currentCell].ColumnSpan;
691
int rowSpan =
PrivateCells
[currentCell].RowSpan;
883
for (int i =
PrivateCells
.Length - 1; i >= 0; --i)
964
PrivateCells
[i] = cell;
1132
minSizes[
PrivateCells
[i].RowIndex] = DefinitionsV[
PrivateCells
[i].RowIndex].RawMinSize;
1136
minSizes[
PrivateCells
[i].ColumnIndex] = DefinitionsU[
PrivateCells
[i].ColumnIndex].RawMinSize;
1139
i =
PrivateCells
[i].Next;
1140
} while (i <
PrivateCells
.Length);
1192
if (cellsHead >=
PrivateCells
.Length)
1212
if (
PrivateCells
[i].ColumnSpan == 1)
1214
DefinitionsU[
PrivateCells
[i].ColumnIndex].UpdateMinSize(Math.Min(children[i].DesiredSize.Width, DefinitionsU[
PrivateCells
[i].ColumnIndex].UserMaxSize));
1220
PrivateCells
[i].ColumnIndex,
1221
PrivateCells
[i].ColumnSpan,
1229
if (
PrivateCells
[i].RowSpan == 1)
1231
DefinitionsV[
PrivateCells
[i].RowIndex].UpdateMinSize(Math.Min(children[i].DesiredSize.Height, DefinitionsV[
PrivateCells
[i].RowIndex].UserMaxSize));
1237
PrivateCells
[i].RowIndex,
1238
PrivateCells
[i].RowSpan,
1244
i =
PrivateCells
[i].Next;
1245
} while (i <
PrivateCells
.Length);
1309
if (
PrivateCells
[cell].IsAutoU
1310
&& !
PrivateCells
[cell].IsStarU )
1322
PrivateCells
[cell].ColumnIndex,
1323
PrivateCells
[cell].ColumnSpan);
1330
else if (
PrivateCells
[cell].IsAutoV
1331
&& !
PrivateCells
[cell].IsStarV )
1342
PrivateCells
[cell].RowIndex,
1343
PrivateCells
[cell].RowSpan);