public virtual void SelectCell(NSCell aCell) { if (((NSCell)_cell).Equals(aCell)) { ((NSCell)_cell).State = (int)NSCellStateValue.NSOnState; SetNeedsDisplay(true); } }
public virtual void UpdateCellInside(NSCell aCell) { SetNeedsDisplay(true); }
public virtual void DrawCellInside(NSCell aCell) { if (((NSCell)_cell).Equals(aCell)) { //FIXME //[_cell drawInteriorWithFrame: _bounds inView: self]; //((NSCell)_cell).DrawInteriorWithFrame(_bounds, this); } }