Créer et lancer un ‘Form’ Simple en CSharp

Author:

Utilitaire,Plateforme:,non,edité
{filelink=17879}

using System.Windows.Forms;

class CreationForm
{
     public static void Main()
     {
          Form form = new Form();

          form.Text = "Mon Form personnel";

          Application.Run(form);
     }
}

Leave a Reply

Your email address will not be published. Required fields are marked *