public GridRow(WebUtilities.Controls.Grid owner, object identity, params string[] items) : this(owner, identity) { foreach (string item in items) { this.Items.Add(new GridRowItem(this, item)); } }
public GridRow(WebUtilities.Controls.Grid owner, object identity) : base("div") { this.Owner = owner; this.Identity = identity; this.CssClass = "GridRow"; this.Items = new List <GridRowItem>(); this.Load += GridRow_Load; }