35 references to PrivateCells
PresentationFramework (35)
System\Windows\Controls\Grid.cs (35)
582bool canResolveStarsU = extData.CellGroup2 > PrivateCells.Length; 680for (int currentCell = 0; currentCell < PrivateCells.Length; ++currentCell) 688int columnIndex = PrivateCells[currentCell].ColumnIndex; 689int rowIndex = PrivateCells[currentCell].RowIndex; 690int columnSpan = PrivateCells[currentCell].ColumnSpan; 691int rowSpan = PrivateCells[currentCell].RowSpan; 883for (int i = PrivateCells.Length - 1; i >= 0; --i) 964PrivateCells[i] = cell; 1132minSizes[PrivateCells[i].RowIndex] = DefinitionsV[PrivateCells[i].RowIndex].RawMinSize; 1136minSizes[PrivateCells[i].ColumnIndex] = DefinitionsU[PrivateCells[i].ColumnIndex].RawMinSize; 1139i = PrivateCells[i].Next; 1140} while (i < PrivateCells.Length); 1192if (cellsHead >= PrivateCells.Length) 1212if (PrivateCells[i].ColumnSpan == 1) 1214DefinitionsU[PrivateCells[i].ColumnIndex].UpdateMinSize(Math.Min(children[i].DesiredSize.Width, DefinitionsU[PrivateCells[i].ColumnIndex].UserMaxSize)); 1220PrivateCells[i].ColumnIndex, 1221PrivateCells[i].ColumnSpan, 1229if (PrivateCells[i].RowSpan == 1) 1231DefinitionsV[PrivateCells[i].RowIndex].UpdateMinSize(Math.Min(children[i].DesiredSize.Height, DefinitionsV[PrivateCells[i].RowIndex].UserMaxSize)); 1237PrivateCells[i].RowIndex, 1238PrivateCells[i].RowSpan, 1244i = PrivateCells[i].Next; 1245} while (i < PrivateCells.Length); 1309if ( PrivateCells[cell].IsAutoU 1310&& !PrivateCells[cell].IsStarU ) 1322PrivateCells[cell].ColumnIndex, 1323PrivateCells[cell].ColumnSpan); 1330else if ( PrivateCells[cell].IsAutoV 1331&& !PrivateCells[cell].IsStarV ) 1342PrivateCells[cell].RowIndex, 1343PrivateCells[cell].RowSpan);