0
我有一個DataGridView,我想添加一個新的行與空單元格,但我不知道在DataGridView中的列(變量)的數量。有沒有簡單的方法來做到這一點?如何在DataGridView中添加新的空行?
我有一個DataGridView,我想添加一個新的行與空單元格,但我不知道在DataGridView中的列(變量)的數量。有沒有簡單的方法來做到這一點?如何在DataGridView中添加新的空行?
您可以使用以下代碼輕鬆完成此操作。下面的標記用於帶有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 = " ";
row.Cells.Add(cell);
Table parentTable = row1.Parent as Table;
parentTable.Rows.Add(row);
}
}
ASPX標記與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>
的可能的複製[如何添加新行以編程的DataGridView] (https://stackoverflow.com/questions/10063770/how-to-add-a-new-row-to-datagridview-programmatically) –