Exemplo n.º 1
0
 /// <summary>
 /// Initializes a new instance of the <see cref="Eto.Forms.DynamicTable"/> class.
 /// </summary>
 public DynamicTable()
 {
     rows = new DynamicRowCollection(this);
 }
Exemplo n.º 2
0
 /// <summary>
 /// Initializes a new instance of the <see cref="Eto.Forms.DynamicTable"/> class.
 /// </summary>
 /// <param name="rows">Rows.</param>
 public DynamicTable(IEnumerable <DynamicRow> rows)
 {
     this.rows = new DynamicRowCollection(this, rows.ToList());
 }