TableItemStyle 类

定义

标识作为 TableRowTableCell 呈现的控件元素的样式属性。

public ref class TableItemStyle : System::Web::UI::WebControls::Style
public class TableItemStyle : System.Web.UI.WebControls.Style
type TableItemStyle = class
    inherit Style
Public Class TableItemStyle
Inherits Style
继承
派生

示例

下面的代码示例在控件中创建 Table 多个行,并将对象 TableItemStyle 应用于每行。

<%@ page language="C#" %>
<%@ Import Namespace="System.Drawing" %>

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" 
    "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">

<script runat="server">
    private void Page_Load(object sender, System.EventArgs e)
    {
//<Snippet4>
        // Create a TableItemStyle object that can be
        // set as the default style for all cells
        // in the table.
        TableItemStyle tableStyle = new TableItemStyle();
        tableStyle.HorizontalAlign = HorizontalAlign.Center;
        tableStyle.VerticalAlign = VerticalAlign.Middle;
        tableStyle.Width = Unit.Pixel(100);
//</Snippet4>

//<Snippet5>
        // Create more rows for the table.
        for (int rowNum = 2; rowNum < 10; rowNum++)
        {
            TableRow tempRow = new TableRow();
            for (int cellNum = 0; cellNum < 3; cellNum++)
            {
                TableCell tempCell = new TableCell();
                tempCell.Text = 
                    String.Format("({0},{1})", rowNum, cellNum);
                tempRow.Cells.Add(tempCell);
            }
            Table1.Rows.Add(tempRow);
        }
//</Snippet5>

//<Snippet6>
        // Apply the TableItemStyle to all rows in the table.
        foreach (TableRow rw in Table1.Rows)
            foreach (TableCell cel in rw.Cells)
                cel.ApplyStyle(tableStyle);
//</Snippet6>

//<Snippet7>
        // Create a header for the table.
        TableHeaderCell header = new TableHeaderCell();
        header.RowSpan = 1;
        header.ColumnSpan = 3;
        header.Text = "Table of (x,y) Values";
        header.Font.Bold = true;
        header.BackColor = Color.Gray;
        header.HorizontalAlign = HorizontalAlign.Center;
        header.VerticalAlign = VerticalAlign.Middle;

        // Add the header to a new row.
        TableRow headerRow = new TableRow();
        headerRow.Cells.Add(header);

        // Add the header row to the table.
        Table1.Rows.AddAt(0, headerRow);  
//</Snippet7>
    }
</script>

<html xmlns="http://www.w3.org/1999/xhtml" >
<head id="Head1" runat="server">
    <title>TableCell Example</title>
</head>
<body>
    <form id="form1" runat="server">
    <div>

    <h1>TableCell Example</h1>
    <asp:table id="Table1" runat="server" 
        CellPadding="3" CellSpacing="3"
        Gridlines="both">
        <asp:TableRow>
            <asp:TableCell Text="(0,0)" />
            <asp:TableCell Text="(0,1)" />
            <asp:TableCell Text="(0,2)" />
        </asp:TableRow>
        <asp:TableRow>
            <asp:TableCell Text="(1,0)" />
            <asp:TableCell Text="(1,1)" />
            <asp:TableCell Text="(1,2)" />
        </asp:TableRow>
    </asp:table>

    </div>
    </form>
  </body>
</html>
<%@ page language="VB" %>
<%@ Import Namespace="System.Drawing" %>

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" 
    "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">

<script runat="server">
    Private Sub Page_Load(ByVal sender As Object, ByVal e As System.EventArgs)
        '<Snippet4>
        ' Create a TableItemStyle object that can be
        ' set as the default style for all cells
        ' in the table.
        Dim tableStyle As New TableItemStyle()
        tableStyle.HorizontalAlign = HorizontalAlign.Center
        tableStyle.VerticalAlign = VerticalAlign.Middle
        tableStyle.Width = Unit.Pixel(100)
        '</Snippet4>
        '<Snippet5>
        ' Create more rows for the table.
        Dim rowNum As Integer
        For rowNum = 2 To 9
            Dim tempRow As New TableRow()
            Dim cellNum As Integer
            For cellNum = 0 To 2
                Dim tempCell As New TableCell()
                tempCell.Text = _
                    String.Format("({0},{1})", rowNum, cellNum)
                tempRow.Cells.Add(tempCell)
            Next
            Table1.Rows.Add(tempRow)
        Next
        '</Snippet5>

        '<Snippet6>
        ' Apply the TableItemStyle to all rows in the table.
        Dim rw As TableRow
        For Each rw In Table1.Rows
            Dim cel As TableCell
            For Each cel In rw.Cells
                cel.ApplyStyle(tableStyle)
            Next
        Next
        '</Snippet6>

        '<Snippet7>
        ' Create a header for the table.
        Dim header As New TableHeaderCell()
        header.RowSpan = 1
        header.ColumnSpan = 3
        header.Text = "Table of (x,y) Values"
        header.Font.Bold = True
        header.BackColor = Color.Gray
        header.HorizontalAlign = HorizontalAlign.Center
        header.VerticalAlign = VerticalAlign.Middle

        ' Add the header to a new row.
        Dim headerRow As New TableRow()
        headerRow.Cells.Add(header)

        ' Add the header row to the table.
        Table1.Rows.AddAt(0, headerRow)
        '</Snippet7>
    End Sub
</script>

<html xmlns="http://www.w3.org/1999/xhtml" >
<head id="Head1" runat="server">
    <title>TableCell Example</title>
</head>
<body>
    <form id="form1" runat="server">
    <div>

    <h1>TableCell Example</h1>
    <asp:table id="Table1" runat="server" 
        CellPadding="3" CellSpacing="3"
        Gridlines="both">
        <asp:TableRow>
            <asp:TableCell Text="(0,0)" />
            <asp:TableCell Text="(0,1)" />
            <asp:TableCell Text="(0,2)" />
        </asp:TableRow>
        <asp:TableRow>
            <asp:TableCell Text="(1,0)" />
            <asp:TableCell Text="(1,1)" />
            <asp:TableCell Text="(1,2)" />
        </asp:TableRow>
    </asp:table>

    </div>
    </form>
  </body>
</html>

注解

TableItemStyle 表示呈现为 TableRow 或控件 TableCell的元素的样式属性。 可以通过分别设置 HorizontalAlign 表的项和属性来控制表格中内容的垂直和 VerticalAlign 水平对齐方式。 还可以指定通过设置 Wrap 属性到达单元格末尾时单元格的内容是否自动继续在下一行。

此类提供用于为控件中的 Table 项创建样式的方法。 可以使用 CopyFromMergeWith 方法复制或合并另一个 TableItemStyle 对象的样式属性,以及从中调用该方法的 TableItemStyle 实例。

构造函数

TableItemStyle()

用默认值创建 TableItemStyle 类的新实例。

TableItemStyle(StateBag)

用指定的状态袋创建 TableItemStyle 类的新实例。

属性

BackColor

获取或设置 Web 服务器控件的背景色。

(继承自 Style)
BorderColor

获取或设置 Web 服务器控件的边框颜色。

(继承自 Style)
BorderStyle

获取或设置 Web 服务器控件的边框样式。

(继承自 Style)
BorderWidth

获取或设置 Web 服务器控件的边框宽度。

(继承自 Style)
CanRaiseEvents

获取一个指示组件是否可以引发事件的值。

(继承自 Component)
Container

获取包含 IContainerComponent

(继承自 Component)
CssClass

获取或设置由 Web 服务器控件在客户端呈现的级联样式表 (CSS) 类。

(继承自 Style)
DesignMode

获取一个值,用以指示 Component 当前是否处于设计模式。

(继承自 Component)
Events

获取附加到此 Component 的事件处理程序的列表。

(继承自 Component)
Font

获取与 Web 服务器控件关联的字体属性。

(继承自 Style)
ForeColor

获取或设置 Web 服务器控件的前景色(通常是文本颜色)。

(继承自 Style)
Height

获取或设置 Web 服务器控件的高度。

(继承自 Style)
HorizontalAlign

获取或设置单元格内容的水平对齐方式。

IsEmpty

保护属性。 获取一个值,该值指示是否已在状态袋中定义任何样式元素。

(继承自 Style)
IsTrackingViewState

返回一个值,该值指示状态袋中是否有任何已定义的样式元素。

(继承自 Style)
RegisteredCssClass

获取已向控件注册的级联样式表 (CSS) 类。

(继承自 Style)
Site

获取或设置 ComponentISite

(继承自 Component)
VerticalAlign

获取或设置单元格内容的垂直对齐方式。

ViewState

获取保存样式元素的状态袋。

(继承自 Style)
Width

获取或设置 Web 服务器控件的宽度。

(继承自 Style)
Wrap

获取或设置一个值,该值指示单元格的内容在单元格中是否换行。

方法

AddAttributesToRender(HtmlTextWriter)

将需要呈现的 HTML 特性和样式添加到指定的 HtmlTextWriter 中。 此方法主要由控件开发人员使用。

(继承自 Style)
AddAttributesToRender(HtmlTextWriter, WebControl)

将有关水平对齐方式、垂直对齐方式和包装的信息添加到要呈现的特性列表中。

CopyFrom(Style)

将指定 Style 的非空样式属性复制到从中调用此方法的 TableItemStyle 类的实例中。

CreateObjRef(Type)

创建一个对象,该对象包含生成用于与远程对象进行通信的代理所需的全部相关信息。

(继承自 MarshalByRefObject)
Dispose()

释放由 Component 使用的所有资源。

(继承自 Component)
Dispose(Boolean)

释放由 Component 占用的非托管资源,还可以另外再释放托管资源。

(继承自 Component)
Equals(Object)

确定指定对象是否等于当前对象。

(继承自 Object)
FillStyleAttributes(CssStyleCollection, IUrlResolutionService)

将指定对象的样式属性添加到 CssStyleCollection 对象。

(继承自 Style)
GetHashCode()

作为默认哈希函数。

(继承自 Object)
GetLifetimeService()
已过时。

检索控制此实例的生存期策略的当前生存期服务对象。

(继承自 MarshalByRefObject)
GetService(Type)

返回一个对象,该对象表示由 Component 或它的 Container 提供的服务。

(继承自 Component)
GetStyleAttributes(IUrlResolutionService)

检索实现了 CssStyleCollection 的指定对象的 IUrlResolutionService 对象。

(继承自 Style)
GetType()

获取当前实例的 Type

(继承自 Object)
InitializeLifetimeService()
已过时。

获取生存期服务对象来控制此实例的生存期策略。

(继承自 MarshalByRefObject)
LoadViewState(Object)

加载以前保存的状态。

(继承自 Style)
MemberwiseClone()

创建当前 Object 的浅表副本。

(继承自 Object)
MemberwiseClone(Boolean)

创建当前 MarshalByRefObject 对象的浅表副本。

(继承自 MarshalByRefObject)
MergeWith(Style)

将指定 Style 的样式属性与从中调用此方法的 TableItemStyle 类的实例组合。

Reset()

从样式中移除任何已定义的样式元素。

SaveViewState()

受保护的方法。 保存在调用 TrackViewState() 方法后已修改的任何状态。

(继承自 Style)
SetBit(Int32)

受保护的内部方法。 设置一个内部位屏蔽字段以指示存储在状态袋中的样式属性。

(继承自 Style)
SetDirty()

标记 Style 以便在视图状态中记录其状态。

(继承自 Style)
ToString()

返回表示当前对象的字符串。

(继承自 Style)
TrackViewState()

受保护的方法。 标记跟踪控件状态更改的起始点。 跟踪开始之后所做的任何更改都将被跟踪并保存到控件视图状态中。

(继承自 Style)

事件

Disposed

在通过调用 Dispose() 方法释放组件时发生。

(继承自 Component)

显式接口实现

IStateManager.IsTrackingViewState

获取一个值,该值指示服务器控件是否在跟踪其视图状态更改。

(继承自 Style)
IStateManager.LoadViewState(Object)

加载以前保存的状态。

(继承自 Style)
IStateManager.SaveViewState()

返回包含状态更改的对象。

(继承自 Style)
IStateManager.TrackViewState()

开始跟踪状态更改。

(继承自 Style)

适用于

另请参阅