Hand Cursor
using System.Drawing; using System.Windows.Forms; class FormProperties { public static void Main() { Form form = new Form(); form.Text = "Form Properties"; form.Cursor = Cursors.Hand; Application.Run(form); } }
1. | Load cursor file(*.cur) | ||
2. | Set form window cursor | ||
3. | Load animated cursor | ||
4. | Set Form window cursor to wait cursor | ||
5. | All Mouse Cursors |