Excel-Like ToolTip Demo

This sample demonstrates the addition of Excel-Like comments in grid cells. A custom mousecontroller implementing IMouseController interface has been created to display comments for each cell..

Features:

Here is the image:

ColumnStyles screenshot

Here is a sample code snippet:

                //create the Comment mousecontroller.
                commentMouseController = new CommentMouseController(gridGroupingControl1.TableControl,comments);

                //allow context menu to edit/add comments
                commentMouseController.ContextMenuEnabled = true;

                //register the controller  
                gridGroupingControl1.TableControl.MouseControllerDispatcher.Add(commentMouseController);