private void launcher_Click(object sender, EventArgs e)
        {
            this.Controls.Clear();
            LabyrinthGraphix lab = new LabyrinthGraphix();

            this.Controls.Add(lab);
        }
Exemple #2
0
        public Labyrinthe()
        {
            InitializeComponent();

            this.Controls.Clear();
            LabyrinthGraphix lab = new LabyrinthGraphix();

            this.Controls.Add(lab);
        }