Ejemplo n.º 1
0
 internal void InvalidateRowsMeasureState(bool forceInvalidateRows)
 {
     _rowsLayer.InvalidateMeasure();
     if (forceInvalidateRows)
     {
         CellCache.ClearAll();
         CellOverflowLayoutBuildEngine.Clear();
         foreach (UIElement elem in _rowsLayer.Children)
         {
             elem.InvalidateMeasure();
         }
     }
 }
Ejemplo n.º 2
0
 internal void RemoveCellOverflowLayoutModel(int rowIndex)
 {
     CellOverflowLayoutBuildEngine.RemoveModel(rowIndex);
 }
Ejemplo n.º 3
0
 internal CellOverflowLayoutModel GetCellOverflowLayoutModel(int rowIndex)
 {
     return(CellOverflowLayoutBuildEngine.GetModel(rowIndex));
 }