How to change the mouse pointer to an Image when clicked on it in c#
问题 How can i change the mouse pointer to an image when clicked on the image in c#? 回答1: The question is vague/unclear but perhaps you want to change the system cursor (not just your application)? Here is a link to the pinvoke info for SetSystemCursor. Be warned this is considered bad form. 回答2: This MSDN article explains how you would do it with WPF. Just change their drop-down to a OnClick for the image you're interested in. You could likely also hook in to an OnClick event in WinForms too, but