1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39
|
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Windows.Forms;
namespace WindowsFormsApplication1
{
public partial class Form1 : Form
{
private Form2 forme2 = null;// declaration variable form
private Form3 forme3 = null;// declaration variable form
public Form1()
{
InitializeComponent();
}
public void Form1_Load(object sender, EventArgs e)
{
forme2 = new Form2();//instansiation dans le load
forme3 = new Form3();// instansiation dans le load
}
private void inscriptionToolStripMenuItem1_Click(object sender, EventArgs e)
{
forme2.ShowDialog();// affichage de la form déjà loaded
}
private void codesPostauxToolStripMenuItem_Click(object sender, EventArgs e)
{
forme3.ShowDialog();// affichage de la form déjà loaded
}
}
} |