Пример #1
0
		public void Add (DynamicItem item)
		{
			if (CurrentRow != null)
				CurrentRow.Items.Add (item);
			else
				AddRow (item);
		}
Пример #2
0
 public void AddRow(DynamicItem item)
 {
     var row = new DynamicRow ();
     row.Items.Add (item);
     rows.Add (row);
 }