35 references to PrivateCells
PresentationFramework (35)
System\Windows\Controls\Grid.cs (35)
593
bool canResolveStarsU = extData.CellGroup2 >
PrivateCells
.Length;
694
for (int currentCell = 0; currentCell <
PrivateCells
.Length; ++currentCell)
702
int columnIndex =
PrivateCells
[currentCell].ColumnIndex;
703
int rowIndex =
PrivateCells
[currentCell].RowIndex;
704
int columnSpan =
PrivateCells
[currentCell].ColumnSpan;
705
int rowSpan =
PrivateCells
[currentCell].RowSpan;
900
for (int i =
PrivateCells
.Length - 1; i >= 0; --i)
980
PrivateCells
[i] = cell;
1148
minSizes[
PrivateCells
[i].RowIndex] = DefinitionsV[
PrivateCells
[i].RowIndex].RawMinSize;
1152
minSizes[
PrivateCells
[i].ColumnIndex] = DefinitionsU[
PrivateCells
[i].ColumnIndex].RawMinSize;
1155
i =
PrivateCells
[i].Next;
1156
} while (i <
PrivateCells
.Length);
1208
if (cellsHead >=
PrivateCells
.Length)
1228
if (
PrivateCells
[i].ColumnSpan == 1)
1230
DefinitionsU[
PrivateCells
[i].ColumnIndex].UpdateMinSize(Math.Min(children[i].DesiredSize.Width, DefinitionsU[
PrivateCells
[i].ColumnIndex].UserMaxSize));
1236
PrivateCells
[i].ColumnIndex,
1237
PrivateCells
[i].ColumnSpan,
1245
if (
PrivateCells
[i].RowSpan == 1)
1247
DefinitionsV[
PrivateCells
[i].RowIndex].UpdateMinSize(Math.Min(children[i].DesiredSize.Height, DefinitionsV[
PrivateCells
[i].RowIndex].UserMaxSize));
1253
PrivateCells
[i].RowIndex,
1254
PrivateCells
[i].RowSpan,
1260
i =
PrivateCells
[i].Next;
1261
} while (i <
PrivateCells
.Length);
1325
if (
PrivateCells
[cell].IsAutoU
1326
&& !
PrivateCells
[cell].IsStarU )
1338
PrivateCells
[cell].ColumnIndex,
1339
PrivateCells
[cell].ColumnSpan);
1346
else if (
PrivateCells
[cell].IsAutoV
1347
&& !
PrivateCells
[cell].IsStarV )
1358
PrivateCells
[cell].RowIndex,
1359
PrivateCells
[cell].RowSpan);