AD
Administrator
Syncfusion Team
November 28, 2005 11:49 AM UTC
If you want to catch the DragDrop before the CellsChanged, then one way is to use virtual overrides in a derived class instead of using events. So, derive the GridControl, override OnDragDrop. In your override, perform the work you are now doing in the grid.DragDrop event handler, and then call the baseclass to trigger the normal event processing.