35 references to PrivateCells
PresentationFramework (35)
System\Windows\Controls\Grid.cs (35)
584bool canResolveStarsU = extData.CellGroup2 > PrivateCells.Length; 685for (int currentCell = 0; currentCell < PrivateCells.Length; ++currentCell) 693int columnIndex = PrivateCells[currentCell].ColumnIndex; 694int rowIndex = PrivateCells[currentCell].RowIndex; 695int columnSpan = PrivateCells[currentCell].ColumnSpan; 696int rowSpan = PrivateCells[currentCell].RowSpan; 891for (int i = PrivateCells.Length - 1; i >= 0; --i) 971PrivateCells[i] = cell; 1139minSizes[PrivateCells[i].RowIndex] = DefinitionsV[PrivateCells[i].RowIndex].RawMinSize; 1143minSizes[PrivateCells[i].ColumnIndex] = DefinitionsU[PrivateCells[i].ColumnIndex].RawMinSize; 1146i = PrivateCells[i].Next; 1147} while (i < PrivateCells.Length); 1199if (cellsHead >= PrivateCells.Length) 1219if (PrivateCells[i].ColumnSpan == 1) 1221DefinitionsU[PrivateCells[i].ColumnIndex].UpdateMinSize(Math.Min(children[i].DesiredSize.Width, DefinitionsU[PrivateCells[i].ColumnIndex].UserMaxSize)); 1227PrivateCells[i].ColumnIndex, 1228PrivateCells[i].ColumnSpan, 1236if (PrivateCells[i].RowSpan == 1) 1238DefinitionsV[PrivateCells[i].RowIndex].UpdateMinSize(Math.Min(children[i].DesiredSize.Height, DefinitionsV[PrivateCells[i].RowIndex].UserMaxSize)); 1244PrivateCells[i].RowIndex, 1245PrivateCells[i].RowSpan, 1251i = PrivateCells[i].Next; 1252} while (i < PrivateCells.Length); 1316if ( PrivateCells[cell].IsAutoU 1317&& !PrivateCells[cell].IsStarU ) 1329PrivateCells[cell].ColumnIndex, 1330PrivateCells[cell].ColumnSpan); 1337else if ( PrivateCells[cell].IsAutoV 1338&& !PrivateCells[cell].IsStarV ) 1349PrivateCells[cell].RowIndex, 1350PrivateCells[cell].RowSpan);