private void cmd_zumSpiel_Click(object sender, EventArgs e) { //man gerät zur Schwierigkeitsauswahl tabControl.SelectedTab = tbp_schwierigkeit; this.drawPanel1.Controller = controller; this.drawPanel1.setFPController(); }
static void Main() { Application.EnableVisualStyles(); Application.SetCompatibleTextRenderingDefault(false); Spiel game = new Spiel(); SpielController spielController = new SpielController(game, new DataBase()); //game.dp1SetController(spielController); spielController.Start(); Application.Run(); }
public void dp1SetController(SpielController cont) { this.drawPanel1.Controller = cont; }