我有一个从 ODBC 数据源动态创建的 gridview。我想做一些类似购物车的东西,所以我想添加一列,其中包含数量的文本框和一些按钮以将行中的项目添加到购物车中。有什么例子吗?
问问题
130 次
1 回答
0
为 RowCreated 创建一个 EventHandler ,每次动态创建一行时都会触发类似的东西:
void gridView1_RowCreated(object sender, GridViewRowEventArgs e)
{
GridViewRow row = e.Row;
TableCell actionsCell = new TableCell();
//put code here to add to actionsCell
// you might have to modify this to specify where in the row to insert
row.Cells.Add(actionsCell);
}
然后将您的按钮或文本或您想要的任何内容放入该行中动态创建的单元格中
于 2012-09-14T20:18:35.203 回答