私はこれを書いた:
JButton saveButton = new JButton(saveAction);
次に、ウィンドウ内に表示されるように呼び出すにはどうすればよいですか?(私はすでにウィンドウのコードを持っています、私はそれを呼び出す方法がわからないのでそれが表示されます)
saveButton.setVisible(true);
your_window.add(saveButton);
それで全部です。
まず、ウィンドウ用のContentPaneを作成する必要があります(JFrameを意味していると思います)。ウィンドウに直接ボタンを追加することはお勧めできません:P次に、そのペインにボタンを追加できます。
panel.addComponent(button);
最後に行うことは次のとおりです。
frame.setContentPane(panel)
そしてそれがすべてです:P一言で言えば;)
このようなものを使用してください
public class MainWindow extends JFrame {
public static void main(String[] args) {
MainWindow frame = new MainWindow();
frame.setVisible(true);
}
public MainWindow() throws IOException {
setTitle("Conveyor");
setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
setBounds(100, 100, 851, 515);
contentPane = new JPanel();
JButton refreshButton = new JButton("refresh");
contentPane.add(refreshButton, BorderLayout.EAST);
}
}