예제 #1
0
 public MatrixHeaderCell(IMatrixHeader header, MatrixCellType newCellType, System.Collections.Generic.IList <IMatrixHeader> children = null)
 {
     this.CellType = newCellType;
     this.Children = children;
     this.Header   = header.Header;
     this.ToolTip  = header.ToolTip;
     this.Tag      = header.Tag;
 }
예제 #2
0
 protected MatrixHeaderCell(MatrixCellType cellType, string header = null)
 {
     this.CellType = cellType;
     this.Header   = header;
 }