2017-11-11 19 views
0

DataGridViewがあり、空のセルを含む新しい行を追加したいのですが、DataGridViewの列数(変数)がわかりません。これを行う簡単な方法はありますか?DataGridViewに新しい空の行を追加するにはどうすればよいですか?

+0

が重複する可能性を持つASPXマークアップの[プログラムでDataGridViewのために新しい行を追加する方法] (https://stackoverflow.com/questions/10063770/how-to-add-a-new-row-to-datagridview-programmatically) –

答えて

1

次のコードを使用して簡単に行うことができます。以下のマークアップはgridviewのあるページのもので、下のC#コードは列の名前やデータ型を特定しないで空の行を追加するボタンクリックイベントです。

これは試され、テストされています。

ボタンのC#コードの新しい空の行を追加します

protected void btn1_Click(object sender, EventArgs e) 
{ 
    GridViewRow row1 = GridView1.Rows[0]; 
    GridViewRow row = new GridViewRow(0, 0, DataControlRowType.DataRow, DataControlRowState.Insert); 
    for (int i = 0; i < row1.Cells.Count; i++) 
    { 
     TableCell cell = new TableCell(); 
     cell.Text = "&nbsp;"; 
     row.Cells.Add(cell); 
     Table parentTable = row1.Parent as Table; 
     parentTable.Rows.Add(row); 
    } 
} 

のGridViewの

<%@ Page Language="C#" AutoEventWireup="true" CodeFile="GridViewSample.aspx.cs" Inherits="GridViewSample" %> 

<!DOCTYPE html> 

<html xmlns="http://www.w3.org/1999/xhtml"> 
<head runat="server"> 
    <title></title> 
</head> 
<body> 
    <form id="form1" runat="server"> 
     <div> 
      <asp:Button ID="btn1" runat="server" Text="Add Row" OnClick="btn1_Click" /> 
      <asp:GridView ID="GridView1" runat="server" AutoGenerateColumns="False" CellPadding="4" DataKeyNames="ProductID" DataSourceID="SqlDataSource1" ForeColor="#333333" GridLines="None"> 
       <AlternatingRowStyle BackColor="White" /> 
       <Columns> 
        <asp:BoundField DataField="ProductID" HeaderText="ProductID" ReadOnly="True" SortExpression="ProductID" /> 
        <asp:BoundField DataField="ProductName" HeaderText="ProductName" SortExpression="ProductName" /> 
        <asp:BoundField DataField="QuantityPerUnit" HeaderText="QuantityPerUnit" SortExpression="QuantityPerUnit" /> 
        <asp:BoundField DataField="UnitPrice" HeaderText="UnitPrice" SortExpression="UnitPrice" /> 
        <asp:BoundField DataField="UnitsInStock" HeaderText="UnitsInStock" SortExpression="UnitsInStock" /> 
        <asp:BoundField DataField="UnitsOnOrder" HeaderText="UnitsOnOrder" SortExpression="UnitsOnOrder" /> 
        <asp:BoundField DataField="CategoryName" HeaderText="CategoryName" SortExpression="CategoryName" /> 
       </Columns> 
       <FooterStyle BackColor="#990000" Font-Bold="True" ForeColor="White" /> 
       <HeaderStyle BackColor="#990000" Font-Bold="True" ForeColor="White" /> 
       <PagerStyle BackColor="#FFCC66" ForeColor="#333333" HorizontalAlign="Center" /> 
       <RowStyle BackColor="#FFFBD6" ForeColor="#333333" /> 
       <SelectedRowStyle BackColor="#FFCC66" Font-Bold="True" ForeColor="Navy" /> 
       <SortedAscendingCellStyle BackColor="#FDF5AC" /> 
       <SortedAscendingHeaderStyle BackColor="#4D0000" /> 
       <SortedDescendingCellStyle BackColor="#FCF6C0" /> 
       <SortedDescendingHeaderStyle BackColor="#820000" /> 
      </asp:GridView> 
      <asp:SqlDataSource ID="SqlDataSource1" runat="server" ConnectionString="<%$ ConnectionStrings:NorthWindConnectionString %>" SelectCommand="SELECT [ProductID], [ProductName], [QuantityPerUnit], [UnitPrice], [UnitsInStock], [UnitsOnOrder], [CategoryName] FROM [Alphabetical list of products]"></asp:SqlDataSource> 
     </div> 
    </form> 
</body> 
</html> 
関連する問題