DetailsView.CommandRowStyle プロパティ
定義
重要
一部の情報は、リリース前に大きく変更される可能性があるプレリリースされた製品に関するものです。 Microsoft は、ここに記載されている情報について、明示または黙示を問わず、一切保証しません。
TableItemStyle コントロールのコマンド行の外観を設定できる DetailsView オブジェクトへの参照を取得します。
public:
property System::Web::UI::WebControls::TableItemStyle ^ CommandRowStyle { System::Web::UI::WebControls::TableItemStyle ^ get(); };
[System.Web.UI.PersistenceMode(System.Web.UI.PersistenceMode.InnerProperty)]
public System.Web.UI.WebControls.TableItemStyle CommandRowStyle { get; }
[<System.Web.UI.PersistenceMode(System.Web.UI.PersistenceMode.InnerProperty)>]
member this.CommandRowStyle : System.Web.UI.WebControls.TableItemStyle
Public ReadOnly Property CommandRowStyle As TableItemStyle
プロパティ値
TableItemStyle コントロールのコマンド行のスタイルを表す DetailsView への参照。
- 属性
例
次のコード例では、プロパティを使用 CommandRowStyle して、コントロール内のコマンド行のフォントとスタイルの設定を指定する方法を 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 CommandRowStyle Example</title>
</head>
<body>
<form id="Form1" runat="server">
<h3>DetailsView CommandRowStyle Example</h3>
<asp:detailsview id="CustomerDetailsView"
datasourceid="DetailsViewSource"
autogeneraterows="false"
datakeynames="CustomerID"
gridlines="Both"
allowpaging="true"
runat="server">
<headerstyle backcolor="Navy"
forecolor="White" />
<commandrowstyle backcolor="LightCyan"
font-names="Arial"
font-size="10"
font-bold="true"/>
<fields>
<asp:commandfield ButtonType="Link"
ShowEditButton="true"/>
<asp:boundfield datafield="CustomerID"
headertext="Customer ID"
readonly="true"/>
<asp:boundfield datafield="CompanyName"
headertext="Company Name"/>
<asp:boundfield datafield="Address"
headertext="Address"/>
<asp:boundfield datafield="City"
headertext="City"/>
<asp:boundfield datafield="PostalCode"
headertext="Postal Code"/>
<asp:boundfield datafield="Country"
headertext="Country"/>
</fields>
</asp:detailsview>
<!-- 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="DetailsViewSource" runat="server"
ConnectionString=
"<%$ ConnectionStrings:NorthWindConnectionString%>"
InsertCommand="INSERT INTO [Customers]([CustomerID],
[CompanyName], [Address], [City], [PostalCode], [Country])
VALUES (@CustomerID, @CompanyName, @Address, @City,
@PostalCode, @Country)"
SelectCommand="Select [CustomerID], [CompanyName],
[Address], [City], [PostalCode], [Country] 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 CommandRowStyle Example</title>
</head>
<body>
<form id="Form1" runat="server">
<h3>DetailsView CommandRowStyle Example</h3>
<asp:detailsview id="CustomerDetailsView"
datasourceid="DetailsViewSource"
autogeneraterows="false"
datakeynames="CustomerID"
gridlines="Both"
allowpaging="true"
runat="server">
<headerstyle backcolor="Navy"
forecolor="White" />
<commandrowstyle backcolor="LightCyan"
font-names="Arial"
font-size="10"
font-bold="true"/>
<fields>
<asp:commandfield ButtonType="Link"
ShowEditButton="true"/>
<asp:boundfield datafield="CustomerID"
headertext="Customer ID"
readonly="true"/>
<asp:boundfield datafield="CompanyName"
headertext="Company Name"/>
<asp:boundfield datafield="Address"
headertext="Address"/>
<asp:boundfield datafield="City"
headertext="City"/>
<asp:boundfield datafield="PostalCode"
headertext="Postal Code"/>
<asp:boundfield datafield="Country"
headertext="Country"/>
</fields>
</asp:detailsview>
<!-- 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="DetailsViewSource" runat="server"
ConnectionString=
"<%$ ConnectionStrings:NorthWindConnectionString%>"
InsertCommand="INSERT INTO [Customers]([CustomerID],
[CompanyName], [Address], [City], [PostalCode], [Country])
VALUES (@CustomerID, @CompanyName, @Address, @City,
@PostalCode, @Country)"
SelectCommand="Select [CustomerID], [CompanyName],
[Address], [City], [PostalCode], [Country] From
[Customers]">
</asp:SqlDataSource>
</form>
</body>
</html>
注釈
このプロパティを CommandRowStyle 使用して、コントロール内のコマンド行の外観を DetailsView 制御します。 コマンド行には、編集、削除、挿入などの操作を実行するコマンド ボタンが含まれています。 このプロパティは読み取り専用です。ただし、返されるオブジェクトのプロパティを TableItemStyle 設定できます。 プロパティは、オブジェクトのプロパティ (たとえばCommandRowStyle-ForeColor
) であるフォームProperty-Subproperty``Subproperty
で宣言的にTableItemStyle設定できます。 プロパティは、プログラムでフォームProperty.Subproperty
で設定することもできます (たとえば)。 CommandRowStyle.ForeColor
一般的な設定には、通常、カスタムの背景色、前景色、フォント プロパティが含まれます。