35 references to PrivateCells
PresentationFramework (35)
System\Windows\Controls\Grid.cs (35)
582bool canResolveStarsU = extData.CellGroup2 > PrivateCells.Length; 683for (int currentCell = 0; currentCell < PrivateCells.Length; ++currentCell) 691int columnIndex = PrivateCells[currentCell].ColumnIndex; 692int rowIndex = PrivateCells[currentCell].RowIndex; 693int columnSpan = PrivateCells[currentCell].ColumnSpan; 694int rowSpan = PrivateCells[currentCell].RowSpan; 889for (int i = PrivateCells.Length - 1; i >= 0; --i) 970PrivateCells[i] = cell; 1138minSizes[PrivateCells[i].RowIndex] = DefinitionsV[PrivateCells[i].RowIndex].RawMinSize; 1142minSizes[PrivateCells[i].ColumnIndex] = DefinitionsU[PrivateCells[i].ColumnIndex].RawMinSize; 1145i = PrivateCells[i].Next; 1146} while (i < PrivateCells.Length); 1198if (cellsHead >= PrivateCells.Length) 1218if (PrivateCells[i].ColumnSpan == 1) 1220DefinitionsU[PrivateCells[i].ColumnIndex].UpdateMinSize(Math.Min(children[i].DesiredSize.Width, DefinitionsU[PrivateCells[i].ColumnIndex].UserMaxSize)); 1226PrivateCells[i].ColumnIndex, 1227PrivateCells[i].ColumnSpan, 1235if (PrivateCells[i].RowSpan == 1) 1237DefinitionsV[PrivateCells[i].RowIndex].UpdateMinSize(Math.Min(children[i].DesiredSize.Height, DefinitionsV[PrivateCells[i].RowIndex].UserMaxSize)); 1243PrivateCells[i].RowIndex, 1244PrivateCells[i].RowSpan, 1250i = PrivateCells[i].Next; 1251} while (i < PrivateCells.Length); 1315if ( PrivateCells[cell].IsAutoU 1316&& !PrivateCells[cell].IsStarU ) 1328PrivateCells[cell].ColumnIndex, 1329PrivateCells[cell].ColumnSpan); 1336else if ( PrivateCells[cell].IsAutoV 1337&& !PrivateCells[cell].IsStarV ) 1348PrivateCells[cell].RowIndex, 1349PrivateCells[cell].RowSpan);