DetailsView.RowStyle プロパティ
定義
重要
一部の情報は、リリース前に大きく変更される可能性があるプレリリースされた製品に関するものです。 Microsoft は、ここに記載されている情報について、明示または黙示を問わず、一切保証しません。
TableItemStyle コントロールのデータ行の外観を設定できる DetailsView オブジェクトへの参照を取得します。
public:
property System::Web::UI::WebControls::TableItemStyle ^ RowStyle { System::Web::UI::WebControls::TableItemStyle ^ get(); };
[System.Web.UI.PersistenceMode(System.Web.UI.PersistenceMode.InnerProperty)]
public System.Web.UI.WebControls.TableItemStyle RowStyle { get; }
[<System.Web.UI.PersistenceMode(System.Web.UI.PersistenceMode.InnerProperty)>]
member this.RowStyle : System.Web.UI.WebControls.TableItemStyle
Public ReadOnly Property RowStyle As TableItemStyle
プロパティ値
TableItemStyle コントロールのデータ行のスタイルを表す DetailsView への参照。
- 属性
例
次のコード例は、プロパティを使用 RowStyle して、コントロール内のデータ行のフォントとスタイルの設定を指定する方法を 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>
注釈
このプロパティを RowStyle 使用して、コントロール内のデータ行の外観を DetailsView 制御します。 プロパティもAlternatingRowStyle設定されている場合、設定と設定の間でデータ行が交互にRowStyleAlternatingRowStyle表示されます。 このプロパティは読み取り専用です。ただし、返されるオブジェクトのプロパティを TableItemStyle 設定できます。 プロパティは、オブジェクトのプロパティ TableItemStyle (たとえばRowStyle-ForeColor
) であるフォームProperty-Subproperty``Subproperty
で宣言によって設定できます。 プロパティは、プログラムでフォーム Property.Subproperty
(たとえば RowStyle.ForeColor
) で設定することもできます。 一般的な設定には、通常、カスタム背景色、前景色、フォント プロパティが含まれます。