35 references to PrivateCells
PresentationFramework (35)
System\Windows\Controls\Grid.cs (35)
584
bool canResolveStarsU = extData.CellGroup2 >
PrivateCells
.Length;
685
for (int currentCell = 0; currentCell <
PrivateCells
.Length; ++currentCell)
693
int columnIndex =
PrivateCells
[currentCell].ColumnIndex;
694
int rowIndex =
PrivateCells
[currentCell].RowIndex;
695
int columnSpan =
PrivateCells
[currentCell].ColumnSpan;
696
int rowSpan =
PrivateCells
[currentCell].RowSpan;
891
for (int i =
PrivateCells
.Length - 1; i >= 0; --i)
971
PrivateCells
[i] = cell;
1139
minSizes[
PrivateCells
[i].RowIndex] = DefinitionsV[
PrivateCells
[i].RowIndex].RawMinSize;
1143
minSizes[
PrivateCells
[i].ColumnIndex] = DefinitionsU[
PrivateCells
[i].ColumnIndex].RawMinSize;
1146
i =
PrivateCells
[i].Next;
1147
} while (i <
PrivateCells
.Length);
1199
if (cellsHead >=
PrivateCells
.Length)
1219
if (
PrivateCells
[i].ColumnSpan == 1)
1221
DefinitionsU[
PrivateCells
[i].ColumnIndex].UpdateMinSize(Math.Min(children[i].DesiredSize.Width, DefinitionsU[
PrivateCells
[i].ColumnIndex].UserMaxSize));
1227
PrivateCells
[i].ColumnIndex,
1228
PrivateCells
[i].ColumnSpan,
1236
if (
PrivateCells
[i].RowSpan == 1)
1238
DefinitionsV[
PrivateCells
[i].RowIndex].UpdateMinSize(Math.Min(children[i].DesiredSize.Height, DefinitionsV[
PrivateCells
[i].RowIndex].UserMaxSize));
1244
PrivateCells
[i].RowIndex,
1245
PrivateCells
[i].RowSpan,
1251
i =
PrivateCells
[i].Next;
1252
} while (i <
PrivateCells
.Length);
1316
if (
PrivateCells
[cell].IsAutoU
1317
&& !
PrivateCells
[cell].IsStarU )
1329
PrivateCells
[cell].ColumnIndex,
1330
PrivateCells
[cell].ColumnSpan);
1337
else if (
PrivateCells
[cell].IsAutoV
1338
&& !
PrivateCells
[cell].IsStarV )
1349
PrivateCells
[cell].RowIndex,
1350
PrivateCells
[cell].RowSpan);