GridView.AlternatingRowStyle プロパティ
アセンブリ: System.Web (system.web.dll 内)

GridView コントロールの交互のデータ行のスタイルを表す TableItemStyle への参照。

AlternatingRowStyle プロパティを使用して、GridView コントロールの交互のデータ行の外観を制御します。このプロパティが設定されている場合、データ行は、RowStyle 設定と AlternatingRowStyle 設定が交互に適用されて表示されます。このプロパティは読み取り専用です。ただし、このプロパティが返す TableItemStyle オブジェクトのプロパティを設定することはできます。次のいずれかの方法を使用することにより、プロパティを宣言によって設定できます。
-
GridView コントロールの開始タグに、Property-Subproperty の形式で属性を指定します。ここで、Subproperty には、TableItemStyle オブジェクトのプロパティを指定します (例 : AlternatingRowStyle-ForeColor)。
-
GridView コントロールの開始タグと終了タグの間で <AlternatingRowStyle> 要素を入れ子にします。
Property.Subproperty の形式で、プロパティをプログラムによって設定することもできます (例 : AlternatingRowStyle.ForeColor)。通常、共通設定には、カスタムの背景色、前景色、およびフォントのプロパティが含まれます。

AlternatingRowStyle プロパティを使用して、GridView コントロールの交互のデータ行のスタイルを宣言によって定義する方法を次のコード例に示します。
<%@ Page language="VB" %> <html> <body> <form runat="server"> <h3>GridView RowStyle and AlternatingRowStyle Example</h3> <asp:gridview id="CustomersGridView" datasourceid="CustomersSource" autogeneratecolumns="true" emptydatatext="No data available." runat="server"> <rowstyle backcolor="LightCyan" forecolor="DarkBlue" font-italic="true"/> <alternatingrowstyle backcolor="PaleTurquoise" forecolor="DarkBlue" font-italic="true"/> </asp:gridview> <!-- This example uses Microsoft SQL Server and connects --> <!-- to the Northwind sample database. Use an ASP.NET --> <!-- expression to retrieve the connection string value --> <!-- from the Web.config file. --> <asp:sqldatasource id="CustomersSource" selectcommand="Select [CustomerID], [CompanyName], [Address], [City], [PostalCode], [Country] From [Customers]" connectionstring="<%$ ConnectionStrings:NorthWindConnectionString%>" runat="server"/> </form> </body> </html>
<%@ Page language="C#" %> <html> <body> <form runat="server"> <h3>GridView RowStyle and AlternatingRowStyle Example</h3> <asp:gridview id="CustomersGridView" datasourceid="CustomersSource" autogeneratecolumns="true" emptydatatext="No data available." runat="server"> <rowstyle backcolor="LightCyan" forecolor="DarkBlue" font-italic="true"/> <alternatingrowstyle backcolor="PaleTurquoise" forecolor="DarkBlue" font-italic="true"/> </asp:gridview> <!-- This example uses Microsoft SQL Server and connects --> <!-- to the Northwind sample database. Use an ASP.NET --> <!-- expression to retrieve the connection string value --> <!-- from the Web.config file. --> <asp:sqldatasource id="CustomersSource" selectcommand="Select [CustomerID], [CompanyName], [Address], [City], [PostalCode], [Country] From [Customers]" connectionstring="<%$ ConnectionStrings:NorthWindConnectionString%>" runat="server"/> </form> </body> </html>

Windows 98, Windows 2000 SP4, Windows Server 2003, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP SP2, Windows XP Starter Edition
開発プラットフォームの中には、.NET Framework によってサポートされていないバージョンがあります。サポートされているバージョンについては、「システム要件」を参照してください。


Weblioに収録されているすべての辞書からGridView.AlternatingRowStyle プロパティを検索する場合は、下記のリンクをクリックしてください。

- GridView.AlternatingRowStyle プロパティのページへのリンク