コード例 #1
0
ファイル: Form_professeur.cs プロジェクト: Ghandy582/ProjetS4
        private void gestionDesTâchesToolStripMenuItem_Click(object sender, EventArgs e)
        {
            this.Hide();
            Form_gestion_tache form_gestion_tache = new Form_gestion_tache(form_login, utilisateur, taches, this);

            form_gestion_tache.Show();
        }
コード例 #2
0
        private void eleve_menu_gestion_taches_Click_1(object sender, EventArgs e)
        {
            this.Hide();
            Form_gestion_tache form_gestion_tache = new Form_gestion_tache(form_login, utilisateur, taches, this);

            form_gestion_tache.Show();
        }
コード例 #3
0
 public Form_acces_rapide_taches(Utilisateur u, Taches t, Form_gestion_tache g)
 {
     InitializeComponent();
     utilisateur = u;
     taches      = t;
     taches.affiche_taches_liste_acces_rapide(this.acces_rapide_tache_liste, utilisateur.Id_Membre);
     form_gestion_tache = g;
 }
コード例 #4
0
 public Form_nouvelle_tache(Utilisateur u, Taches t, Form_gestion_tache g)
 {
     InitializeComponent();
     taches             = t;
     utilisateur        = u;
     today              = DateTime.Now;
     form_gestion_tache = g;
 }