We use cookies to give you the best experience on our website. If you continue to browse, then you agree to our privacy policy and cookie policy. Image for the cookie policy date
close icon

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.
Live Chat Icon For mobile
Up arrow icon