开发者

adding components dynamically in a JPanel

开发者 https://www.devze.com 2023-01-14 07:14 出处:网络
how can i add components dynamically in a jpanel? I am having add button when i click the button the components should be added to the JPanel.

how can i add components dynamically in a jpanel? I am having add button when i click the button the components should be added to the JPanel.

my question is that adding a textfield and button to jpanel when i click on the add button the user can click on the add button any number of times according to that i have to add them to the jpanel. i have added to sc开发者_如何学编程rollerpane to my jpanel,and jpanel layout manager is set to null.


Just as you always do, except that you have to call:

panel.revalidate();

when you are done, since the container is already realized.


Use an ActionListener, you can use an anonymous class like this:

JPanel myJPanel = new JPanel();

...

b = new Button("Add Component");
b.addActionListener(new ActionListener() {
    public void actionPerformed(ActionEvent e) {
        JLabel someLabel = new JLabel("Some new Label");
        myJPanel.add(someLabel);
        myJPanel.revalidate();
    }
});
0

精彩评论

暂无评论...
验证码 换一张
取 消

关注公众号