public ActionCell(RowBase row, ActionTypes?at = null) : base(row) { if (at.HasValue) { ActionType = at.Value; Attributes = at.Value.GetActionTypeAttributes(); if (at == ActionTypes.Edit) { Text = "Edit"; } } }
public CellBase(RowBase row) { Row = row; }
public DataCell(RowBase row) : base(row) { }