35 references to PrivateCells
PresentationFramework (35)
System\Windows\Controls\Grid.cs (35)
635
bool canResolveStarsU = extData.CellGroup2 >
PrivateCells
.Length;
733
for (int currentCell = 0; currentCell <
PrivateCells
.Length; ++currentCell)
741
int columnIndex =
PrivateCells
[currentCell].ColumnIndex;
742
int rowIndex =
PrivateCells
[currentCell].RowIndex;
743
int columnSpan =
PrivateCells
[currentCell].ColumnSpan;
744
int rowSpan =
PrivateCells
[currentCell].RowSpan;
936
for (int i =
PrivateCells
.Length - 1; i >= 0; --i)
1017
PrivateCells
[i] = cell;
1185
minSizes[
PrivateCells
[i].RowIndex] = DefinitionsV[
PrivateCells
[i].RowIndex].RawMinSize;
1189
minSizes[
PrivateCells
[i].ColumnIndex] = DefinitionsU[
PrivateCells
[i].ColumnIndex].RawMinSize;
1192
i =
PrivateCells
[i].Next;
1193
} while (i <
PrivateCells
.Length);
1245
if (cellsHead >=
PrivateCells
.Length)
1265
if (
PrivateCells
[i].ColumnSpan == 1)
1267
DefinitionsU[
PrivateCells
[i].ColumnIndex].UpdateMinSize(Math.Min(children[i].DesiredSize.Width, DefinitionsU[
PrivateCells
[i].ColumnIndex].UserMaxSize));
1273
PrivateCells
[i].ColumnIndex,
1274
PrivateCells
[i].ColumnSpan,
1282
if (
PrivateCells
[i].RowSpan == 1)
1284
DefinitionsV[
PrivateCells
[i].RowIndex].UpdateMinSize(Math.Min(children[i].DesiredSize.Height, DefinitionsV[
PrivateCells
[i].RowIndex].UserMaxSize));
1290
PrivateCells
[i].RowIndex,
1291
PrivateCells
[i].RowSpan,
1297
i =
PrivateCells
[i].Next;
1298
} while (i <
PrivateCells
.Length);
1362
if (
PrivateCells
[cell].IsAutoU
1363
&& !
PrivateCells
[cell].IsStarU )
1375
PrivateCells
[cell].ColumnIndex,
1376
PrivateCells
[cell].ColumnSpan);
1383
else if (
PrivateCells
[cell].IsAutoV
1384
&& !
PrivateCells
[cell].IsStarV )
1395
PrivateCells
[cell].RowIndex,
1396
PrivateCells
[cell].RowSpan);