Inheritance: NSObject, INSNumber, IAction
Exemplo n.º 1
0
 public virtual void SelectCell(NSCell aCell)
 {
     if (((NSCell)_cell).Equals(aCell))
      {
          ((NSCell)_cell).State = (int)NSCellStateValue.NSOnState;
          SetNeedsDisplay(true);
      }
 }
Exemplo n.º 2
0
 public virtual void UpdateCellInside(NSCell aCell)
 {
     SetNeedsDisplay(true);
 }
Exemplo n.º 3
0
 public virtual void DrawCellInside(NSCell aCell)
 {
     if (((NSCell)_cell).Equals(aCell))
     {
         //FIXME
         //[_cell drawInteriorWithFrame: _bounds inView: self];
         //((NSCell)_cell).DrawInteriorWithFrame(_bounds, this);
     }
 }