builded New Button
@ -33,6 +33,11 @@ public class Main {
rootPanel.add(back);
back.setText("Back");
JButton newButton = new JButton();
newButton.setVisible(true);
newButton.setBounds(395, 5, 100, 25);
newButton.setText("New");
rootPanel.add(newButton);
}
});