Elements not showing in GridBagLayout
问题 I am using GridBagLayout as JFrame layout. My elements are not showing no matter what i write. Please don't give answers which use anything but GridBagLayout(sorry if it sound rude) JPanel Panel; JButton insertButton = new JButton("Insert"); GridBagConstraints gbc; public MainFrame() { this.setTitle("JAVA & MySQL"); this.setVisible(true); this.setBounds(500, 100, 600, 600); this.setDefaultCloseOperation(EXIT_ON_CLOSE); Panel = new JPanel(new GridBagLayout()); Panel.setOpaque(true); Panel