Example #1
0
        static void Main()
        {
            Application.EnableVisualStyles();
            FMere fenetreDemarrage;

            fenetreDemarrage = new FMere();
            Application.Run(fenetreDemarrage);
        }
Example #2
0
 public FFille(FMere maMere, int id)
 {
     InitializeComponent();
     this.maMere = maMere;
     this.id     = id;
     this.Text   = "Fille n°" + id;
     this.monNom = this.Text;
     this.Load  += new EventHandler(FFille_Load);
 }