Hi Jeff,
In gridgroupingcontrol, while dropping the column in the groupdroparea, two events of groupedcolumns can be handled.
this.gridGroupingControl1.TableDescriptor.GroupedColumns.Changing += new Syncfusion.Collections.ListPropertyChangedEventHandler(GroupedColumns_Changing);
this.gridGroupingControl1.TableDescriptor.GroupedColumns.Changed += new Syncfusion.Collections.ListPropertyChangedEventHandler(GroupedColumns_Changed);
Changing- This event get triggerred while the column adding/removing is in progress in groupdroparea
Changed - This event get triggerred after the column is dropped to/from groupdroparea.
Changing event get triggered before Changed event.
Through the following code, you can find out which column is dropped and the type of action(adding/removing).
Console.WriteLine(e.Item + " " + e.Action);
Please refer to the following minimal sample in which this has been implemented.
http://files.syncfusion.com/support/samples/Grid.Windows/6.3.0.6/I56523.zipJisha