示例#1
0
 public TableRow(BootRowCellTheme theme, params Union <string, Widget, HTMLElement>[] typos) : base(new HTMLTableRowElement() { ClassName = theme.ToString("G") })
 {
     TableCell.AppendDataRow(this, typos);
 }
示例#2
0
 public TableHeaderRow(BootRowCellTheme theme, params Union <string, Control, HTMLElement>[] typos) : base(new HTMLTableRowElement() { ClassName = theme.ToString("G") })
 {
     TableHeaderCell.AppendHeaderDataRow(this, typos);
 }
示例#3
0
 public TableCell(BootRowCellTheme theme, params Union <string, Widget, HTMLElement>[] typos) : base(new HTMLTableDataCellElement() { ClassName = theme.ToString("G") }, typos)
 {
 }
 public TableHeaderCell(BootRowCellTheme theme, params Union <string, Control, HTMLElement>[] typos) : base(new HTMLTableHeaderCellElement() { ClassName = theme.ToString("G") }, typos)
 {
 }