How to catch click on eto ImageViewCell?

125 Views Asked by At

I have a column in my grid that displays a garbage icon. When clicked I want to catch that click and delete the row.

How do I listen for a click on an ImageViewCell?

1

There are 1 best solutions below

0
On
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);
     }
}