Exemplo n.º 1
0
 public GridViewColumnGroup(string text, string name)
 {
     this.groups = new ColumnGroupCollection(this);
     this.rows   = new ColumnGroupRowCollection();
     this.rows.CollectionChanged += new NotifyCollectionChangedEventHandler(this.rows_CollectionChanged);
     this.text = text;
     this.name = name;
 }
Exemplo n.º 2
0
 public ColumnGroupLayoutNode(ColumnGroupRowCollection rows)
     : this()
 {
     this.Rows = rows;
 }