35 references to PrivateCells
PresentationFramework (35)
System\Windows\Controls\Grid.cs (35)
581bool canResolveStarsU = extData.CellGroup2 > PrivateCells.Length; 679for (int currentCell = 0; currentCell < PrivateCells.Length; ++currentCell) 687int columnIndex = PrivateCells[currentCell].ColumnIndex; 688int rowIndex = PrivateCells[currentCell].RowIndex; 689int columnSpan = PrivateCells[currentCell].ColumnSpan; 690int rowSpan = PrivateCells[currentCell].RowSpan; 882for (int i = PrivateCells.Length - 1; i >= 0; --i) 963PrivateCells[i] = cell; 1131minSizes[PrivateCells[i].RowIndex] = DefinitionsV[PrivateCells[i].RowIndex].RawMinSize; 1135minSizes[PrivateCells[i].ColumnIndex] = DefinitionsU[PrivateCells[i].ColumnIndex].RawMinSize; 1138i = PrivateCells[i].Next; 1139} while (i < PrivateCells.Length); 1191if (cellsHead >= PrivateCells.Length) 1211if (PrivateCells[i].ColumnSpan == 1) 1213DefinitionsU[PrivateCells[i].ColumnIndex].UpdateMinSize(Math.Min(children[i].DesiredSize.Width, DefinitionsU[PrivateCells[i].ColumnIndex].UserMaxSize)); 1219PrivateCells[i].ColumnIndex, 1220PrivateCells[i].ColumnSpan, 1228if (PrivateCells[i].RowSpan == 1) 1230DefinitionsV[PrivateCells[i].RowIndex].UpdateMinSize(Math.Min(children[i].DesiredSize.Height, DefinitionsV[PrivateCells[i].RowIndex].UserMaxSize)); 1236PrivateCells[i].RowIndex, 1237PrivateCells[i].RowSpan, 1243i = PrivateCells[i].Next; 1244} while (i < PrivateCells.Length); 1308if ( PrivateCells[cell].IsAutoU 1309&& !PrivateCells[cell].IsStarU ) 1321PrivateCells[cell].ColumnIndex, 1322PrivateCells[cell].ColumnSpan); 1329else if ( PrivateCells[cell].IsAutoV 1330&& !PrivateCells[cell].IsStarV ) 1341PrivateCells[cell].RowIndex, 1342PrivateCells[cell].RowSpan);