35 references to PrivateCells
PresentationFramework (35)
System\Windows\Controls\Grid.cs (35)
582
bool canResolveStarsU = extData.CellGroup2 >
PrivateCells
.Length;
683
for (int currentCell = 0; currentCell <
PrivateCells
.Length; ++currentCell)
691
int columnIndex =
PrivateCells
[currentCell].ColumnIndex;
692
int rowIndex =
PrivateCells
[currentCell].RowIndex;
693
int columnSpan =
PrivateCells
[currentCell].ColumnSpan;
694
int rowSpan =
PrivateCells
[currentCell].RowSpan;
889
for (int i =
PrivateCells
.Length - 1; i >= 0; --i)
970
PrivateCells
[i] = cell;
1138
minSizes[
PrivateCells
[i].RowIndex] = DefinitionsV[
PrivateCells
[i].RowIndex].RawMinSize;
1142
minSizes[
PrivateCells
[i].ColumnIndex] = DefinitionsU[
PrivateCells
[i].ColumnIndex].RawMinSize;
1145
i =
PrivateCells
[i].Next;
1146
} while (i <
PrivateCells
.Length);
1198
if (cellsHead >=
PrivateCells
.Length)
1218
if (
PrivateCells
[i].ColumnSpan == 1)
1220
DefinitionsU[
PrivateCells
[i].ColumnIndex].UpdateMinSize(Math.Min(children[i].DesiredSize.Width, DefinitionsU[
PrivateCells
[i].ColumnIndex].UserMaxSize));
1226
PrivateCells
[i].ColumnIndex,
1227
PrivateCells
[i].ColumnSpan,
1235
if (
PrivateCells
[i].RowSpan == 1)
1237
DefinitionsV[
PrivateCells
[i].RowIndex].UpdateMinSize(Math.Min(children[i].DesiredSize.Height, DefinitionsV[
PrivateCells
[i].RowIndex].UserMaxSize));
1243
PrivateCells
[i].RowIndex,
1244
PrivateCells
[i].RowSpan,
1250
i =
PrivateCells
[i].Next;
1251
} while (i <
PrivateCells
.Length);
1315
if (
PrivateCells
[cell].IsAutoU
1316
&& !
PrivateCells
[cell].IsStarU )
1328
PrivateCells
[cell].ColumnIndex,
1329
PrivateCells
[cell].ColumnSpan);
1336
else if (
PrivateCells
[cell].IsAutoV
1337
&& !
PrivateCells
[cell].IsStarV )
1348
PrivateCells
[cell].RowIndex,
1349
PrivateCells
[cell].RowSpan);