how to change mouse pointer on mouseover a division to hand?
how can i change the default arrow pointer style t开发者_开发知识库o hand when client move the pointer to a particular division?
In WinForm, you can use the Cursors
class, which provides a collection of Cursor objects. More information here.
But, Cursor = Cursors.Hand;
will do the job.
EDIT
As for ASP .Net, check this link out. SomeNewKid has posted the answer.
Dear all, i found the answer as for that division we need to set style, there we have option to set the cursor style.
精彩评论