Exemplo n.º 1
0
 private double GetPaddedWidth(DetailsRowColumn <TItem> column, bool isFirst)
 {
     return(column.CalculatedWidth +
            DetailsRow <TItem> .CellLeftPadding +
            DetailsRow <TItem> .CellRightPadding +
            (column.IsPadded ? DetailsRow <TItem> .CellExtraRightPadding : 0));
 }
Exemplo n.º 2
0
 public ColumnResizedArgs(DetailsRowColumn <TItem> column, int colIndex, double width)
 {
     Column      = column;
     ColumnIndex = colIndex;
     NewWidth    = width;
 }