在Form上拖放ContextMenuStrip并添加一个“删除”菜单项,并添加此菜单项的Click事件处理代码,如下所示,设置DataGridView的ContextMenuStrip属性为新加入的ContextMenuStrip。
private void toolStripMenuItem_Click(object sender, EventArgs e){
DataGridView dv = sender as DataGridView
if (dv != null && dv.CurrentCell!=null && dv.CurrentCell.RowIndex!=-1)
{
dv.Rows.RemoveAt(dv.CurrentCell.RowIndex)
}
}
如有数据库的 *** 作,可相应的做数据库的删除 *** 作。
您好,我来为您解答:对DataGridView添加一个Column,
对Column的类型选DataGridViewButtonColumn即可。
希望我的回答对你有帮助。
<asp:datagridview ID="d1"><asp:itemtemplate>
<table>
<tr>
<td><asp:Button ID="Button1" Text="修改"></asp:Button></td>
<td><asp:Button ID="Button2" Text="删除"></asp:Button></td>
</tr>
</table>
</asp:itemtemplate>
</asp:datagridview>
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)