本文整理汇总了C#中System.Web.UI.WebControls.TableHeaderCell.ApplyStyle方法的典型用法代码示例。如果您正苦于以下问题:C# TableHeaderCell.ApplyStyle方法的具体用法?C# TableHeaderCell.ApplyStyle怎么用?C# TableHeaderCell.ApplyStyle使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类System.Web.UI.WebControls.TableHeaderCell
的用法示例。
在下文中一共展示了TableHeaderCell.ApplyStyle方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。
示例1: CreateControlHierarchy
//.........这里部分代码省略.........
Style s2 = new Style();
s2.Width = guidWidth;
s2.ForeColor = BorderColor;
Style s3 = new Style();
s3.Width = buttonColumnWidth;
s3.ForeColor = ForeColor;
Style s4 = new Style();
s4.Width = dataWidth;
Style txtAreaStyle = new Style();
//txtAreaStyle.Height = txtBoxHeight;
txtAreaStyle.Width = dataWidth;
txtAreaStyle.BorderColor = BorderColor;
Style txtBoxStyle = new Style();
txtBoxStyle.Height = txtBoxHeight;
txtBoxStyle.Width = dataWidth;
txtBoxStyle.BorderColor = BorderColor;
Style txtGuidStyle = new Style();
txtGuidStyle.Height = txtBoxHeight;
txtGuidStyle.Width = guidWidth;
txtGuidStyle.BorderColor = BorderColor;
TableRow row;
TableHeaderCell th;
TableCell td;
TableCell td2;
//Label lbl;
//Create the first row
row = new TableRow();
th = new TableHeaderCell();
th.ApplyStyle(s1);
td = new TableCell();
td.ApplyStyle(s2);
td2 = new TableCell();
td2.ApplyStyle(s3);
row.Cells.Add(th);
row.Cells.Add(td);
row.Cells.Add(td2);
tblMain.Rows.Add(row);
row = new TableRow();
th = new TableHeaderCell();
th.ColumnSpan = 3;
th.Style.Add(HtmlTextWriterStyle.TextAlign, "center");
th.Text = "Required Credential Information";
row.Cells.Add(th);
tblMain.Rows.Add(row);
row = new TableRow();
th = new TableHeaderCell();
lblServiceName = new Label();
lblServiceName.ID = "lblServiceName";
lblServiceName.Text = "Service Name";
th.Controls.Add(lblServiceName);
td = new TableCell();
td.ColumnSpan = 2;
txtServiceName = new TextBox();
txtServiceName.ID = "txtServiceName";
txtServiceName.ApplyStyle(txtBoxStyle);
txtServiceName.Text = AgentName;
td.Controls.Add(txtServiceName);
row.Cells.Add(th);
row.Cells.Add(td);