Пример #1
0
 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));
     }
 }
Пример #2
0
        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;
        }