private void acces_rapide_tache_ajouter_tache_Click(object sender, EventArgs e)
        {
            Form_nouvelle_tache form_nouvelle_tache = new Form_nouvelle_tache(utilisateur, taches, form_gestion_tache);

            form_nouvelle_tache.Show();
        }
Example #2
0
        private void nouvelleTâcheToolStripMenuItem_Click(object sender, EventArgs e)
        {
            Form_nouvelle_tache form_nouvelle_tache = new Form_nouvelle_tache(utilisateur, taches, form_gestion_tache);

            form_nouvelle_tache.Show();
        }
Example #3
0
        private void gestion_tache_menu_nouvelle_tache_Click(object sender, EventArgs e)
        {
            Form_nouvelle_tache form_nouvelle_tache = new Form_nouvelle_tache(utilisateur, taches, this);

            form_nouvelle_tache.Show();
        }