35 references to PrivateCells
PresentationFramework (35)
src\Framework\System\Windows\Controls\Grid.cs (35)
655bool canResolveStarsU = extData.CellGroup2 > PrivateCells.Length; 757for (int currentCell = 0; currentCell < PrivateCells.Length; ++currentCell) 765int columnIndex = PrivateCells[currentCell].ColumnIndex; 766int rowIndex = PrivateCells[currentCell].RowIndex; 767int columnSpan = PrivateCells[currentCell].ColumnSpan; 768int rowSpan = PrivateCells[currentCell].RowSpan; 963for (int i = PrivateCells.Length - 1; i >= 0; --i) 1043PrivateCells[i] = cell; 1211minSizes[PrivateCells[i].RowIndex] = DefinitionsV[PrivateCells[i].RowIndex].MinSize; 1215minSizes[PrivateCells[i].ColumnIndex] = DefinitionsU[PrivateCells[i].ColumnIndex].MinSize; 1218i = PrivateCells[i].Next; 1220} while (i < PrivateCells.Length); 1272if (cellsHead >= PrivateCells.Length) 1292if (PrivateCells[i].ColumnSpan == 1) 1294DefinitionsU[PrivateCells[i].ColumnIndex].UpdateMinSize(Math.Min(children[i].DesiredSize.Width, DefinitionsU[PrivateCells[i].ColumnIndex].UserMaxSize)); 1300PrivateCells[i].ColumnIndex, 1301PrivateCells[i].ColumnSpan, 1309if (PrivateCells[i].RowSpan == 1) 1311DefinitionsV[PrivateCells[i].RowIndex].UpdateMinSize(Math.Min(children[i].DesiredSize.Height, DefinitionsV[PrivateCells[i].RowIndex].UserMaxSize)); 1317PrivateCells[i].RowIndex, 1318PrivateCells[i].RowSpan, 1324i = PrivateCells[i].Next; 1325} while (i < PrivateCells.Length); 1389if ( PrivateCells[cell].IsAutoU 1390&& !PrivateCells[cell].IsStarU ) 1402PrivateCells[cell].ColumnIndex, 1403PrivateCells[cell].ColumnSpan); 1410else if ( PrivateCells[cell].IsAutoV 1411&& !PrivateCells[cell].IsStarV ) 1422PrivateCells[cell].RowIndex, 1423PrivateCells[cell].RowSpan);