Ejemplo n.º 1
0
 public Table(string ID, out Table tabRef, TableRow[] rows)
 {
     tabRef  = this;
     this.ID = ID;
     CssOutputGenerator.config(this);
     Rows = rows;
 }
Ejemplo n.º 2
0
 public Label(string ID, out Label labelRef)
 {
     labelRef = this;
     this.ID  = ID;
     CssOutputGenerator.config(this);
 }
Ejemplo n.º 3
0
 public Label(string ID)
 {
     this.ID = ID;
     CssOutputGenerator.config(this);
 }
Ejemplo n.º 4
0
 public Button(string ID, out Button buttonRef)
 {
     buttonRef = this;
     this.ID   = ID;
     CssOutputGenerator.config(this);
 }
Ejemplo n.º 5
0
 public Button(string ID)
 {
     this.ID = ID;
     CssOutputGenerator.config(this);
 }
Ejemplo n.º 6
0
 public TextBox(string ID, out TextBox tbxRef)
 {
     CssOutputGenerator.config(this);
     tbxRef  = this;
     this.ID = ID;
 }
Ejemplo n.º 7
0
 public TextBox(string ID)
 {
     CssOutputGenerator.config(this);
     this.ID = ID;
 }
Ejemplo n.º 8
0
 public Table(params TableRow[] rows)
 {
     CssOutputGenerator.config(this);
     Rows = rows;
 }
Ejemplo n.º 9
0
 public Table(string ID, TableRow[] rows)
 {
     this.ID = ID;
     CssOutputGenerator.config(this);
     Rows = rows;
 }
Ejemplo n.º 10
0
 public Table(string ID, out Table tabRef)
 {
     tabRef  = this;
     this.ID = ID;
     CssOutputGenerator.config(this);
 }
Ejemplo n.º 11
0
 public Table(string ID)
 {
     this.ID = ID;
     CssOutputGenerator.config(this);
 }
Ejemplo n.º 12
0
 public Table()
 {
     CssOutputGenerator.config(this);
 }
Ejemplo n.º 13
0
 public TableCell(params msWebUi.Control[] ctrls)
 {
     CssOutputGenerator.config(this);
     Content = ctrls;
 }
Ejemplo n.º 14
0
 public TableRow(params TableCell[] cells)
 {
     CssOutputGenerator.config(this);
     Cells = cells;
 }