예제 #1
0
		public ButtonElement(string caption) : base(caption)
		{
			DataBinding = new ElementDataBinding(this);
		}
예제 #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;
			EditingStyle = UITableViewCellEditingStyle.None;
			
			DataBinding = new ElementDataBinding(this);
		}