How to enable edit mode in single click in the WinForms GridGroupingControl?
Editing
If you want
to set the Edit mode on single click, you can use the ActivateCurrentCellBehaviour
property as SetCurrent. The default value of ActivateCurrentCell
is ClickOnCell. The current cell will be edited or focused whenever
the cell is made the current cell.
C#
this.gridGroupingControl1.ActivateCurrentCellBehavior = Syncfusion.Windows.Forms.Grid.GridCellActivateAction.SetCurrent;VB
Me.gridGroupingControl1.ActivateCurrentCellBehavior = Syncfusion.Windows.Forms.Grid.GridCellActivateAction.SetCurrentThe screenshot below illustrates the edit mode of a cell

Reference Link: Editing