Esempio n. 1
0
		public CustomOwnerDrawnElement (UITableViewCellStyle style, string cellIdentifier, 
                      UITableViewCellSelectionStyle selectionStyle, UITableViewCellAccessory accesory)
			: this(style, cellIdentifier)
		{
			this.SelectionStyle = selectionStyle;
			this.Accessory = accesory;			
		}
Esempio n. 2
0
 public CustomTableViewSource(UITableView tableView, string cellIdentifier,
                              UITableViewCellSelectionStyle selectionStyle = UITableViewCellSelectionStyle.Default)
     : base(tableView)
 {
     _selectionStyle = selectionStyle;
     _cellIdentifier = cellIdentifier;
 }