예제 #1
0
		public void Add (DynamicItem item)
		{
			if (CurrentRow != null)
				CurrentRow.Items.Add (item);
			else
				AddRow (item);
		}
예제 #2
0
파일: DynamicTable.cs 프로젝트: M1C/Eto
 public void AddRow(DynamicItem item)
 {
     var row = new DynamicRow ();
     row.Items.Add (item);
     rows.Add (row);
 }