DetailsView.AlternatingRowStyle 属性
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
获取对 TableItemStyle 对象的引用,该对象允许您设置 DetailsView 控件中的交替数据行的外观。
public:
property System::Web::UI::WebControls::TableItemStyle ^ AlternatingRowStyle { System::Web::UI::WebControls::TableItemStyle ^ get(); };
[System.Web.UI.PersistenceMode(System.Web.UI.PersistenceMode.InnerProperty)]
public System.Web.UI.WebControls.TableItemStyle AlternatingRowStyle { get; }
[<System.Web.UI.PersistenceMode(System.Web.UI.PersistenceMode.InnerProperty)>]
member this.AlternatingRowStyle : System.Web.UI.WebControls.TableItemStyle
Public ReadOnly Property AlternatingRowStyle As TableItemStyle
属性值
对 TableItemStyle 的引用,该对象表示 DetailsView 控件中交替数据行的样式。
- 属性
示例
下面的代码示例演示如何使用 AlternatingRowStyle 属性为 控件中的 DetailsView 交替数据行指定字体和样式设置。
<%@ Page language="C#" %>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" >
<head runat="server">
<title>DetailsView RowStyle and AlternatingRowStyle Example</title>
</head>
<body>
<form id="Form1" runat="server">
<h3>DetailsView RowStyle and AlternatingRowStyle Example</h3>
<asp:detailsview id="CustomersView"
datasourceid="Customers"
autogeneraterows="true"
allowpaging="true"
runat="server">
<headerstyle backcolor="Navy"
forecolor="White"/>
<RowStyle BackColor="LightGray"
ForeColor="Blue"
Font-Names="Arial"
Font-Size="10"
Font-Italic="true"/>
<AlternatingRowStyle BackColor="White"
ForeColor="Blue"
Font-Names="Arial"
Font-Size="10"
Font-Italic="true"/>
</asp:detailsview>
<!-- This example uses Microsoft SQL Server and connects -->
<!-- to the Northwind sample database. -->
<asp:SqlDataSource ID="Customers" runat="server"
ConnectionString="<%$ ConnectionStrings:NorthwindConnectionString %>"
SelectCommand="SELECT [CompanyName], [ContactName], [CustomerID], [Phone] FROM [Customers]">
</asp:SqlDataSource>
</form>
</body>
</html>
<%@ Page language="VB" %>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" >
<head runat="server">
<title>DetailsView RowStyle and AlternatingRowStyle Example</title>
</head>
<body>
<form id="Form1" runat="server">
<h3>DetailsView RowStyle and AlternatingRowStyle Example</h3>
<asp:detailsview id="CustomersView"
datasourceid="Customers"
autogeneraterows="true"
allowpaging="true"
runat="server">
<headerstyle backcolor="Navy"
forecolor="White"/>
<RowStyle BackColor="LightGray"
ForeColor="Blue"
Font-Names="Arial"
Font-Size="10"
Font-Italic="true"/>
<AlternatingRowStyle BackColor="White"
ForeColor="Blue"
Font-Names="Arial"
Font-Size="10"
Font-Italic="true"/>
</asp:detailsview>
<!-- This example uses Microsoft SQL Server and connects -->
<!-- to the Northwind sample database. -->
<asp:SqlDataSource ID="Customers" runat="server"
ConnectionString="<%$ ConnectionStrings:NorthwindConnectionString %>"
SelectCommand="SELECT [CompanyName], [ContactName], [CustomerID], [Phone] FROM [Customers]">
</asp:SqlDataSource>
</form>
</body>
</html>
注解
AlternatingRowStyle使用 属性可控制控件中DetailsView交替数据行的外观。 设置此属性后,数据行将在设置和AlternatingRowStyle设置之间RowStyle交替显示。 此属性为只读;但是,可以设置它返回的对象 TableItemStyle 的属性。 属性可以声明性地以 形式 Property-Subproperty
进行设置,其中 Subproperty
是对象的属性 TableItemStyle (例如 AlternatingRowStyle-ForeColor
,) 。 还可以以编程方式以格式 Property.Subproperty
(设置属性, AlternatingRowStyle.ForeColor
例如,) 。 常见设置通常包括自定义背景色、前景色和字体属性。