2016-03-19 108 views
0

如何在c#中動態添加datagridview中的一行。單元格和打印總計答案在最後一行的總和?如何在C#中動態添加datagridview中的行

+1

能否請您解釋一下? –

+0

請看看這個? [向datagridview添加行](http://stackoverflow.com/questions/10063770/how-to-add-a-new-row-to-datagridview-programmatically);也許發佈一些你的代碼? –

回答

0

如果我是正確的,你需要一個頁腳行。您必須在您的數據網格中添加一個

<FooterTemplate> </FooterTemplate> 

。然後,您可以在RowCreated,Page Unload事件(或需要的地方)中使用它來修改內容並顯示所需的數據。

你可以使用RowCreated事件爲:

protected void MyGrid_RowCreated(object sender, GridViewRowEventArgs e) 
    { 
     if (e.Row.RowType == DataControlRowType.Footer) 
     { 
      //e.Row.FindControl("what ever control i have"); 
      //use the control to modify content 
     } 
    } 
相關問題