...控件中某一列增加一列按钮,点击每一行的此列按钮则删除此行...
发布网友
发布时间:2024-10-24 00:11
我来回答
共4个回答
热心网友
时间:2分钟前
后台代码 在Designer.cs文件中
private void InitializeComponent()
{
this.删除 = new System.Windows.Forms.DataGridViewButtonColumn();
//
// 删除
//
this.删除.HeaderText = "删除";
this.删除.Name = "删除";
this.删除.Text = "删除";
this.删除.UseColumnTextForButtonValue = true;
this.删除.Width = 90;
}
#endregion 后加上private System.Windows.Forms.DataGridViewButtonColumn 删除;
前台form.cs中写鼠标点击事件
private void dataGridView1_CellMouseClick(object sender, DataGridViewCellMouseEventArgs e)
{
if(e.ColumnIndex=="删除按钮的索引")
{
这里发送sql语句删除此条记录
}
}
热心网友
时间:5分钟前
用RowDeleting事件
=================
前台:<asp:GridView ID="GvList" runat="server" OnRowDeleting="GvList_RowDeleting">
<Columns>
<asp:ButtonField Text="删除" ButtonType="Button" CommandName="Delete" />
</Columns>
</asp:GridView>
------------
后台:protected void GvList_RowDeleting(object sender, GridViewDeleteEventArgs e)
{
string id = GvList.DataKeys[e.RowIndex].Value.ToString();//获取ID,然后执行删除操作。。。
}
热心网友
时间:5分钟前
Collections中添加,仔细查看DataGridView的属性,添加按钮后,添加ItemCommand哦。
热心网友
时间:1分钟前
<asp:GridView ID="GridView1" runat="server">
<Columns>
<asp:ButtonField Text="删除" ButtonType="Button" />
</Columns>
</asp:GridView>