winforms - How to change the cursor on hover in C# -
i can't find out on how can change cursor "pointer" or whatever it's called while hovering image.
i have tried mouseover can't work. here's current code;
private void image_phone_mouseover(object sender, eventargs e) { cursor.current = cursors.hand; } however, cursor doesn't change.
set appropriate cursor in control properties window.
here's example of setting "hand" cursor picturebox.

Comments
Post a Comment