Cursors.Hand : Cursors « System.Windows.Forms « C# / C Sharp by API






Cursors.Hand

 

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);
     }
}

   
  








Related examples in the same category

1.Cursors.AppStarting (All other cursor values)
2.Cursors.WaitCursor