Cursors.AppStarting


I tried to set the GridGroupingControl Cursor to
something like Cursors.AppStarting.
It seems that there is no effecting on the GridGroupingControl.Cursor.

Do you know why?

1 Reply

AD Administrator Syncfusion Team December 11, 2006 05:21 AM UTC

Hi Ken,

The simple way to change the cursor is by handling the CellCursor event and assigning the Cursor. The following is the code snippet
>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
private void gridGroupingControl1_CellCursor(object sender, GridCellCursorEventArgs e)
{
e.Cursor = Cursors.AppStarting;
e.Cancel = true;
}
>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>

Please refer to the following KB article which demonstrates the procedure to change the cursor in the GridGroupingControl
http://www.syncfusion.com/support/kb/grid/Default.aspx?ToDo=view&questId=69

Best regards,
Haneef

Loader.
Up arrow icon