How to restrict tab key in WinForms GridGroupingControl?
Restrict the tab key
To restrict
the Tab key in your application, you can use the WantTabKey property
value as false. It will restrict the tab key option in the
application.
C#
this.gridGroupingControl1.WantTabKey = false;VB
Me.gridGroupingControl1.WantTabKey = FalseSamples:
C#: Tab_Key_CS
VB: Tab_Key_VB