Esempio n. 1
0
 public Element(string caption) : base()
 {
     Id              = new NSString(GetType().FullName);
     Caption         = caption;
     ShowCaption     = !string.IsNullOrEmpty(Caption);
     Theme.CellStyle = UITableViewCellStyle.Default;
     ViewBinding     = new ViewBinding();
     Visible         = true;
     Enabled         = true;
 }
Esempio n. 2
0
		public Element(string caption) : base()
		{
			Id = new NSString(GetType().FullName);
			Caption = caption;
			ShowCaption = !string.IsNullOrEmpty(Caption);
			Theme.CellStyle = UITableViewCellStyle.Default;
			ViewBinding = new ViewBinding();
			Visible = true;
			Enabled = true;
		}