Inheritance: Element, IElementSizing
示例#1
0
 public OwnerDrawnCellView(OwnerDrawnElement element)
 {
     this.element           = element;
     this.AutosizesSubviews = true;
     this.AutoresizingMask  = UIViewAutoresizing.FlexibleWidth;
     this.BackgroundColor   = UIColor.Clear;
 }
			public OwnerDrawnCell(OwnerDrawnElement element, UITableViewCellStyle style, string cellReuseIdentifier) : base(style, cellReuseIdentifier)
			{
				Element = element;
			}
			public OwnerDrawnCellView(OwnerDrawnElement element)
			{
				this.element = element;
                this.AutosizesSubviews = true;
                this.AutoresizingMask = UIViewAutoresizing.FlexibleWidth;
                this.BackgroundColor = UIColor.Clear;
			}
			public OwnerDrawnCellView(OwnerDrawnElement element)
			{
				this.element = element;
			}
示例#5
0
 public OwnerDrawnCellView(OwnerDrawnElement element)
 {
     Element = element;
 }
示例#6
0
 public OwnerDrawnCell(OwnerDrawnElement element, UITableViewCellStyle style, string cellReuseIdentifier) : base(style, cellReuseIdentifier)
 {
     Element = element;
 }
 public OwnerDrawnCell(OwnerDrawnElement element, UITableViewCellStyle style, string cellReuseIdentifier) : base(style, cellReuseIdentifier)
 {
     view = new OwnerDrawnCellView(element);
     ContentView.Add(view);
 }
示例#8
0
			public OwnerDrawnCellView(OwnerDrawnElement element, OwnerDrawnCell cell)
			{
				this.element = element;
				this.cell = cell;
			}
示例#9
0
 public OwnerDrawnCell(OwnerDrawnElement element, UITableViewCellStyle style, string cellReuseIdentifier)
     : base(style, cellReuseIdentifier)
 {
     view = new OwnerDrawnCellView(element);
     ContentView.Add(view);
 }