다음을 통해 공유


DetailsView.CommandRowStyle 속성

정의

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

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 개체를 반환 합니다. 속성 형식에서 선언적으로 설정할 수 있습니다 Property-Subproperty, 여기서 Subproperty 속성인 합니다 TableItemStyle 개체 (예를 들어 CommandRowStyle-ForeColor). 형식에서 속성을 프로그래밍 방식으로 설정할 수도 있습니다 Property.Subproperty (예를 들어 CommandRowStyle.ForeColor). 일반적인 설정에는 일반적으로 사용자 지정 배경색, 전경색 및 글꼴 속성이 포함됩니다.

적용 대상

추가 정보