Example #1
0
 public void RemoveChildRow(Row row)
 {
     ChildRows.Remove(row);
     row.ParentRow = null;
 }
Example #2
0
 public RowLabel(Row parentRow)
     : this()
 {
     ParentRow = parentRow;
 }
Example #3
0
 public void AddChildRow(Row row)
 {
     ChildRows.Add(row);
     row.ParentRow = this;
     row.Visible   = TreeOpen;
 }