我正在使用gridview并填充了数据。想要在鼠标右击事件中启用删除按钮。如何可能?请帮帮我?
答案 0 :(得分:0)
试试这个
this.GridView.MouseDown += new System.Windows.Forms.MouseEventHandler(this.GridView_MouseDown);
private void GridView_MouseDown(object sender, MouseEventArgs e)
{
if(e.Button == MouseButtons.Right)
{
//code to enable a button
}
}