Exemplo n.º 1
0
 public Font GetFont(NSCell cell)
 {
     return(cell.TextLabel.Font.ToEto());
 }
Exemplo n.º 2
0
 public void SetFont(NSCell cell, Font font)
 {
     cell.TextLabel.Font = font.ToUI();
 }
Exemplo n.º 3
0
 public void SetForegroundColor(NSCell cell, Color color)
 {
     cell.TextLabel.TextColor = color.ToNSUI();
 }
Exemplo n.º 4
0
 public Color GetForegroundColor(NSCell cell)
 {
     return(cell.TextLabel.TextColor.ToEto());
 }
Exemplo n.º 5
0
 public Color GetBackgroundColor(NSCell cell)
 {
     return(cell.BackgroundColor.ToEto());
 }
Exemplo n.º 6
0
 public void SetBackgroundColor(NSCell cell, Color color)
 {
     cell.BackgroundColor = color.ToNSUI();
 }
Exemplo n.º 7
0
 public IosCellFormatArgs(GridColumn column, object item, int row, NSCell cell)
     : base(column, item, row)
 {
     this.Cell = cell;
 }
Exemplo n.º 8
0
 public void OnCellFormatting(GridColumn column, object item, int row, NSCell cell)
 {
     Callback.OnCellFormatting(Widget, new IosCellFormatArgs(column, item, row, cell));
 }
Exemplo n.º 9
0
 protected override void BindCell(MonoTouch.UIKit.UITableViewCell cell, object item, MonoTouch.Foundation.NSIndexPath indexPath)
 {
     (cell as InvoiceLineCell).Line = item as InvoiceLine;
 }