35 references to PrivateCells
PresentationFramework (35)
System\Windows\Controls\Grid.cs (35)
635bool canResolveStarsU = extData.CellGroup2 > PrivateCells.Length; 733for (int currentCell = 0; currentCell < PrivateCells.Length; ++currentCell) 741int columnIndex = PrivateCells[currentCell].ColumnIndex; 742int rowIndex = PrivateCells[currentCell].RowIndex; 743int columnSpan = PrivateCells[currentCell].ColumnSpan; 744int rowSpan = PrivateCells[currentCell].RowSpan; 936for (int i = PrivateCells.Length - 1; i >= 0; --i) 1017PrivateCells[i] = cell; 1185minSizes[PrivateCells[i].RowIndex] = DefinitionsV[PrivateCells[i].RowIndex].RawMinSize; 1189minSizes[PrivateCells[i].ColumnIndex] = DefinitionsU[PrivateCells[i].ColumnIndex].RawMinSize; 1192i = PrivateCells[i].Next; 1193} while (i < PrivateCells.Length); 1245if (cellsHead >= PrivateCells.Length) 1265if (PrivateCells[i].ColumnSpan == 1) 1267DefinitionsU[PrivateCells[i].ColumnIndex].UpdateMinSize(Math.Min(children[i].DesiredSize.Width, DefinitionsU[PrivateCells[i].ColumnIndex].UserMaxSize)); 1273PrivateCells[i].ColumnIndex, 1274PrivateCells[i].ColumnSpan, 1282if (PrivateCells[i].RowSpan == 1) 1284DefinitionsV[PrivateCells[i].RowIndex].UpdateMinSize(Math.Min(children[i].DesiredSize.Height, DefinitionsV[PrivateCells[i].RowIndex].UserMaxSize)); 1290PrivateCells[i].RowIndex, 1291PrivateCells[i].RowSpan, 1297i = PrivateCells[i].Next; 1298} while (i < PrivateCells.Length); 1362if ( PrivateCells[cell].IsAutoU 1363&& !PrivateCells[cell].IsStarU ) 1375PrivateCells[cell].ColumnIndex, 1376PrivateCells[cell].ColumnSpan); 1383else if ( PrivateCells[cell].IsAutoV 1384&& !PrivateCells[cell].IsStarV ) 1395PrivateCells[cell].RowIndex, 1396PrivateCells[cell].RowSpan);