Name |
Description |
GridBase |
|
SelectionClipboard |
A controller used to support clipboard copy, cut and paste. You can use this controller with a code like this: grid.GridController.AddController(SourceGrid.Controllers.SelectionClipboard.Default); |
SelectionDelete |
Controller to enable the delete of the current selection content when pressing the Delete (Canc) Key. |
SelectionDrag |
Controller to support drag operations. To enable drag and drop operations on a grid you can use this code: dataGrid.GridController.AddController(SourceGrid.Controllers.SelectionDrag.Copy); dataGrid.GridController.AddController(SourceGrid.Controllers.SelectionDrop.Default); |