Java CardLayout Main Menu Problem

后端 未结 2 714
醉梦人生
醉梦人生 2020-12-07 05:08

Ok so im working on this game in java called 8 bit chimera. Im working on the main menu right now but when im using the card layout the window wont open for some reason. Her

2条回答
  •  执念已碎
    2020-12-07 06:01

    Your problem is with add(BGR,"Breed");. The layout of MainMenuComp is a GridBagLayout, so the constraint must be a GridBagConstraint, not a String (you have "Breed" as the constraint).

提交回复
热议问题