Hand Cursor : Cursor : GUI Windows Form C# Source Code


Custom Search

C# Source Code » GUI Windows Form » Cursor »

 

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

 
    
   
  
   







HTML code for linking to this page:

Follow Navioo On Twitter

C# Source Code

 Navioo GUI Windows Form
» Cursor