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