public FormArborescence() { InitializeComponent(); Preference = Fonction.Preference(); ListeProjet = Fonction.LectureProjet(); police = Preference[2]; dateRecent1 = Preference[7]; Recent1 = Preference[6]; dateRecent2 = Preference[9]; Recent2 = Preference[8]; dateRecent3 = Preference[11]; Recent3 = Preference[10]; }
private void lblACNom1_Click(object sender, EventArgs e) { List <String> Item2 = new List <String>(); List <String> ListeProjet = new List <String>(); ListeProjet = Fonction.LectureProjet(); Label lbl = sender as Label; string dt = DateTime.Today.ToShortDateString(); foreach (var item in ListeProjet) { // string[] nomProjet = item.Split(new[] { " /// " }, StringSplitOptions.None); string[] result = Regex.Split(item, @"\-\-\-"); Item2.Add(result[0]); } if (lbl.Text == Item2[0]) { pictureBox1.Visible = false; Fonction.ecrireFichier("", "", "", "", "", "", lbl.Text, dt); FormsCompetence.FormProjetCalculatrice FPC = new FormsCompetence.FormProjetCalculatrice(); FPC.MdiParent = this; FPC.Show(); } if (lbl.Text == Item2[7]) { Fonction.ecrireFichier("", "", "", "", "", "", lbl.Text, dt); DialogResult DR = MessageBox.Show(LangueElement[175] + "\n" + LangueElement[176], LangueElement[177], MessageBoxButtons.YesNo, MessageBoxIcon.Question); if (DR == DialogResult.Yes) { System.Diagnostics.Process p = new System.Diagnostics.Process(); p.StartInfo.FileName = "http://dimitryrobin.fr/Portfolio/AddFindPlayer.php"; p.Start(); } } if (lbl.Text == Item2[1]) { pictureBox1.Visible = false; Fonction.ecrireFichier("", "", "", "", "", "", lbl.Text, dt); FormsCompetence.FormProjetBarreProgCirculaire FPC = new FormsCompetence.FormProjetBarreProgCirculaire(); FPC.MdiParent = this; FPC.Show(); } if (lbl.Text == Item2[2]) { pictureBox1.Visible = false; Fonction.ecrireFichier("", "", "", "", "", "", lbl.Text, dt); FormsCompetence.FormProjetBoutonAnime FPC = new FormsCompetence.FormProjetBoutonAnime("index"); FPC.MdiParent = this; FPC.Show(); } if (lbl.Text == Item2[3]) { pictureBox1.Visible = false; Fonction.ecrireFichier("", "", "", "", "", "", lbl.Text, dt); FormsCompetence.FormProjetCodeSourceSiteWeb FPC = new FormsCompetence.FormProjetCodeSourceSiteWeb("index"); FPC.MdiParent = this; FPC.Show(); } if (lbl.Text == Item2[4]) { pictureBox1.Visible = false; Fonction.ecrireFichier("", "", "", "", "", "", lbl.Text, dt); FormsCompetence.FormProjetFormulaireContactPersonnalise FPC = new FormsCompetence.FormProjetFormulaireContactPersonnalise(); FPC.MdiParent = this; FPC.Show(); } if (lbl.Text == Item2[5]) { pictureBox1.Visible = false; Fonction.ecrireFichier("", "", "", "", "", "", lbl.Text, dt); FormsCompetence.FormProjetImageFlottante FPC = new FormsCompetence.FormProjetImageFlottante(); FPC.MdiParent = this; FPC.Show(); } if (lbl.Text == Item2[6]) { pictureBox1.Visible = false; Fonction.ecrireFichier("", "", "", "", "", "", lbl.Text, dt); FormsCompetence.FormProjetInfoBulle FPC = new FormsCompetence.FormProjetInfoBulle(); FPC.MdiParent = this; FPC.Show(); } if (lbl.Text == Item2[8]) { pictureBox1.Visible = false; Fonction.ecrireFichier("", "", "", "", "", "", lbl.Text, dt); FormsCompetence.FormProjetMorpion FPC = new FormsCompetence.FormProjetMorpion("index"); FPC.MdiParent = this; FPC.Show(); } if (lbl.Text == Item2[9]) { Fonction.ecrireFichier("", "", "", "", "", "", lbl.Text, dt); recommence: string value = "Pseudonyme"; bool check = false; if (Fonction.InputBoxLogin("Pendu", LangueElement[172], ref value, ref check) == DialogResult.OK) { if (check == false) { if (value != "Pseudonyme" && value != "" && value != " " && value != " " && value != " " && value != " " && value != " ") { pictureBox1.Visible = false; nouvJoueur = new Joueur(value); lesJoueurs.Add(nouvJoueur); nouvJoueur.ModifNbPartie(); nouvJoueur.AfficherJoueur(); FormsCompetence.FormProjetPendu FPC = new FormsCompetence.FormProjetPendu(value, nouvJoueur, lesJoueurs, "index"); FPC.MdiParent = this; FPC.Show(); } else { MessageBox.Show(LangueElement[174], LangueElement[173], MessageBoxButtons.OK, MessageBoxIcon.Warning); goto recommence; } } else { pictureBox1.Visible = false; nouvJoueur = new Joueur("Guest"); lesJoueurs.Add(nouvJoueur); nouvJoueur.ModifNbPartie(); nouvJoueur.AfficherJoueur(); FormsCompetence.FormProjetPendu FPC = new FormsCompetence.FormProjetPendu("Guest", nouvJoueur, lesJoueurs, "index"); FPC.MdiParent = this; FPC.Show(); } } } if (lbl.Text == Item2[10]) { pictureBox1.Visible = false; Fonction.ecrireFichier("", "", "", "", "", "", lbl.Text, dt); FormsCompetence.FormProjetSnake FPC = new FormsCompetence.FormProjetSnake(); FPC.MdiParent = this; FPC.Show(); } }