I want to change the user's cursor when they hover over a specific ToolStripButton, but not for the other items on the ToolStrip. How do I set the button's cursor?
|
|
|
|
|
|
|
You must set the Toolstrip.Cursor property in order to change the cursor. Yes your are right, it will change the mouse cursor for all toolstrip buttons. In order to get around this, create a OnMouseEnter event for each button on the toolstrip, and then set the cursor for the entire toolstrip to the cursor you want for that particular button. |
||
|
|
|
|
Because ToolStripItem doesn't inherit from Control, it doesn't have a Cursor property. You could set the form cursor on the MouseEnter event, and restore the form cursor on the MouseLeave event, VB sample follows:
|
||
|
|
|
|
Drop down to Win32 and handle WM_SETCURSOR. You can put in your own custom logic to change the cursor based on hit testing for the button. Check this article by Raymond Chen for a better understanding of how the Cursor gets set. |
||
|
|
