我的网格中有一列显示垃圾图标。单击时,我想捕获该单击并删除该行。
如何在ImageViewCell上点击?
答案 0 :(得分:0)
gridControl.CellClick += Stats_CellClick;
private void Stats_CellClick(object sender, GridViewCellEventArgs e)
{
if (e.Column == 3)
{
RulesDocAdapter rda = (RulesDocAdapter)e.Item;
rda.Delete();
UpdateRulesDoc(Globals.RulesDoc);
}
}