Hello,
I need to increase all checkbox size inside a GridControl cell and found a thread with some help.
After apply the code to one checkbox cell it changes all checkboxs in grid but the code seems "wrong".
Is it possible to apply the change to the GridControl in general?
My code is:
GridCheckBoxCellRenderer renderer = gridControl.GetCellRenderer(row, col) as GridCheckBoxCellRenderer;
renderer.CheckBoxSize = new Size(20, 20);
Thanks