如果我只是在我的页面上放置一个网格视图(AutoGenerateColumns = true),然后在代码隐藏上连接一个数据源,有没有办法让某些列的每个单元格中发生单击事件?我知道我可以从设计师那里添加按钮、复选框等。我只是想知道我是否可以使用 AutoGenerateColumns 快速轻松地完成它。
void GridView1_RowDataBound(object sender, GridViewRowEventArgs e)
{
if (e.Row.RowType == DataControlRowType.DataRow)
{
DataControlFieldCell c = e.Row.Cells[2] as DataControlFieldCell;
//Maybe somehow put a click event here.
}
}