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