This is a migrated thread and some comments may be shown as answers.

How to add Hand cursor in RadMenuItem

1 Answer 132 Views
Menu
This is a migrated thread and some comments may be shown as answers.
Shanti 😎
Top achievements
Rank 2
Veteran
Shanti 😎 asked on 30 Jan 2020, 07:03 AM

Hi,

I want to add hand cursor in RadMenuItem.

Waiting for your favorable response.

Thanks..

1 Answer, 1 is accepted

Sort by
0
Accepted
Dess | Tech Support Engineer, Principal
Telerik team
answered on 30 Jan 2020, 01:35 PM

Hello, Shanti,   

You can handle the MouseMove event of the specific RadMenuItem and set the Cursor property to Cursors.Hand

        private void radMenuItem3_MouseMove(object sender, MouseEventArgs e)
        { 
            this.Cursor = Cursors.Hand; 
        }

However, if the menu item is located in a drop down of a parent menu item, it is necessary to set the parent menu item's DropDown.Cursor property to Hand:

this.radMenuItem1.DropDown.Cursor = Cursors.Hand;

I hope this information helps. If you need any further assistance please don't hesitate to contact me.

Regards,
Dess | Tech Support Engineer, Sr.
Progress Telerik

Get quickly onboarded and successful with your Telerik and/or Kendo UI products with the Virtual Classroom free technical training, available to all active customers. Learn More.
Tags
Menu
Asked by
Shanti 😎
Top achievements
Rank 2
Veteran
Answers by
Dess | Tech Support Engineer, Principal
Telerik team
Share this question
or