Exemplo n.º 1
0
        public PhraseDesordre(Exercice exo, DataTable tblRes)
        {
            InitializeComponent();
            this.exo = exo;

            //Initialisation de la DataRow concernant la réussite de l'exercice
            dr = tblRes.NewRow();

            dr[0] = this.exo.numeroExercice;
            dr[1] = false;
            dr[2] = false;
            dr[3] = 0;
            dr[4] = new List <string>();
            dr[5] = new List <string>();

            drClose = dr;
        }
Exemplo n.º 2
0
 public formRecap(Exercice exo)
 {
     InitializeComponent();
     this.exo = exo;
 }
Exemplo n.º 3
0
        public changerExo(Exercice exo)
        {
            InitializeComponent();

            this.exo = exo;
        }
Exemplo n.º 4
0
 public Grammaire(Exercice exo)
 {
     InitializeComponent();
     this.exo = exo;
 }
Exemplo n.º 5
0
 public Voc(Exercice exo)
 {
     InitializeComponent();
     this.exo = exo;
 }