Esempio n. 1
0
 private void grid_CellContentClick(object sender, DataGridViewCellEventArgs e)
 {
     if (Util.isColumnMatch(sender, e, hexbarcode))
     {
         Util.displayForm(null, new Returns.Print_Form((Guid)Util.getSelectedRowValue(sender, col_grid_id)));
     }
     else if (Util.isColumnMatch(sender, e, col_grid_Checked))
     {
         SaleReturn.updateCheckedStatus(LIBUtil.Util.getSelectedRowID(grid, col_grid_id), !LIBUtil.Util.getCheckboxValue(sender, e));
         populateGrid();
     }
 }