Example #1
0
        /***************************************
        *               CLICK METHODS
        ***************************************/

        private void BoutonRetour_Click(object sender, EventArgs e)
        {
            Panel_NbRouter_Affichage();
            foreach (Control item in ChoixLiaisonPanel.Controls.OfType <Control>())
            {
                LiaisonMainFlow.Controls.Clear();
                CheckBoxList.Clear();
                BoutonRetour.Hide();
            }
        }
Example #2
0
 private void BoutonValidLiaison_Click(object sender, EventArgs e)
 {
     Panel_Router_Affichage();
     Creation_Des_Router();
     Etablir_Liaisons_Entre_Router();
     Dessiner_Le_Graphe();
     BoutonRetourMenu.Location = new Point(12, 0);
     BoutonRetourMenu.Show();
     BoutonRetour.Hide();
 }
Example #3
0
 public void Panel_Bonjour_Affichage()
 {
     espaceRouter.Hide();
     ChoixLiaisonPanel.Hide();
     NombreRouterPanel.Hide();
     BoutonRetourMenu.Hide();
     BoutonRetour.Hide();
     PanelBonjour.Size     = new Size(1351, 734);
     PanelBonjour.Location = new Point(0, 38);
     PanelBonjour.Show();
     PanelBonjour.Dock = DockStyle.Fill;
 }