programming-examples/c-sharp/Others/Hand Cursor.cs

19 lines
330 B
C#
Raw Normal View History

2019-11-15 12:59:38 +01:00
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);
}
}