コード例 #1
0
 public OwnerDrawnCellView(OwnerDrawnElement element)
 {
     this.element           = element;
     this.AutosizesSubviews = true;
     this.AutoresizingMask  = UIViewAutoresizing.FlexibleWidth;
     this.BackgroundColor   = UIColor.Clear;
 }
コード例 #2
0
 public OwnerDrawnCell(OwnerDrawnElement element, UITableViewCellStyle style, string cellReuseIdentifier) : base(style, cellReuseIdentifier)
 {
     Element = element;
 }
コード例 #3
0
ファイル: OwnerDrawnElement.cs プロジェクト: xNUTs/CodeBucket
 public OwnerDrawnCell(OwnerDrawnElement element, UITableViewCellStyle style, string cellReuseIdentifier) : base(style, cellReuseIdentifier)
 {
     Element = element;
 }
コード例 #4
0
ファイル: OwnerDrawnElement.cs プロジェクト: xNUTs/CodeBucket
 public OwnerDrawnCellView(OwnerDrawnElement element)
 {
     this.element = element;
     this.AutosizesSubviews = true;
     this.AutoresizingMask = UIViewAutoresizing.FlexibleWidth;
     this.BackgroundColor = UIColor.Clear;
 }