Adding Buttons to a JPanel with an existing Button in GUI
I am trying to program my first own Java Application and I want to create a buttons into the GUI. Here is the program I want to run.
If I click on an existing button in the GUI. I would be adding an ActionListener
but I just want add a Button only. If I click both Buttons in my GUI. First run LoadProgress
then Hinzufügen
. How can I fix it so that I create a Button only if I click on the Hinzufügen
Button.
private void pnlLeft(){
JProgressBar bar = new JProgressBar();
bar.setPreferredSize(new Dimension(0, 30));
getContentPane().add(BorderLayout.SOUTH, bar);
JPanel panel2 = new JPanel();
panel2.setLayout(new BoxLayout(panel2, BoxLayout.PAGE_AXIS));
JButton btnLoad = new JButton("LoadProgress");
JButton leftbutton = new JButton("Hinzufügen");
panel2.add(leftbutton);
panel2.add(Box.createVerticalGlue());
panel2.add(btnLoad);
getContentPane().add(BorderLayout.WEST, panel2);
leftbutton.addActionListener(new ActionListener() {
@Override
public void actionPerformed(ActionEvent arg0) {
if(arg0.getActionCommand().equals("Hinzufügen")) {
JButton test = new JButton("TEST");
panel2.add(test);
}
}
});
btnLoad.addActionListener(new ActionListener() {
@Override
public void actionPerformed(ActionEvent e) {
// TODO Auto-generated method stub
new Thread() {
@Override
public void run() {
if(e.getActionCommand().equals("LoadProgress")) {
bar.setStringPainted(true);
for ( int f = 1; f <= 100; f++) {
try {
Thread.sleep((long) (Math.random() * 100));
}catch (InterruptedException ex){
ex.printStackTrace();
}
bar.setString("Lade Bestand..." + f + "%");
bar.setValue(f);
}
bar.setValue(0);
bar.setStringPainted(false);
}
}
}.start();
}});
};
java swing button jpanel actionlistener
add a comment |
I am trying to program my first own Java Application and I want to create a buttons into the GUI. Here is the program I want to run.
If I click on an existing button in the GUI. I would be adding an ActionListener
but I just want add a Button only. If I click both Buttons in my GUI. First run LoadProgress
then Hinzufügen
. How can I fix it so that I create a Button only if I click on the Hinzufügen
Button.
private void pnlLeft(){
JProgressBar bar = new JProgressBar();
bar.setPreferredSize(new Dimension(0, 30));
getContentPane().add(BorderLayout.SOUTH, bar);
JPanel panel2 = new JPanel();
panel2.setLayout(new BoxLayout(panel2, BoxLayout.PAGE_AXIS));
JButton btnLoad = new JButton("LoadProgress");
JButton leftbutton = new JButton("Hinzufügen");
panel2.add(leftbutton);
panel2.add(Box.createVerticalGlue());
panel2.add(btnLoad);
getContentPane().add(BorderLayout.WEST, panel2);
leftbutton.addActionListener(new ActionListener() {
@Override
public void actionPerformed(ActionEvent arg0) {
if(arg0.getActionCommand().equals("Hinzufügen")) {
JButton test = new JButton("TEST");
panel2.add(test);
}
}
});
btnLoad.addActionListener(new ActionListener() {
@Override
public void actionPerformed(ActionEvent e) {
// TODO Auto-generated method stub
new Thread() {
@Override
public void run() {
if(e.getActionCommand().equals("LoadProgress")) {
bar.setStringPainted(true);
for ( int f = 1; f <= 100; f++) {
try {
Thread.sleep((long) (Math.random() * 100));
}catch (InterruptedException ex){
ex.printStackTrace();
}
bar.setString("Lade Bestand..." + f + "%");
bar.setValue(f);
}
bar.setValue(0);
bar.setStringPainted(false);
}
}
}.start();
}});
};
java swing button jpanel actionlistener
add a comment |
I am trying to program my first own Java Application and I want to create a buttons into the GUI. Here is the program I want to run.
If I click on an existing button in the GUI. I would be adding an ActionListener
but I just want add a Button only. If I click both Buttons in my GUI. First run LoadProgress
then Hinzufügen
. How can I fix it so that I create a Button only if I click on the Hinzufügen
Button.
private void pnlLeft(){
JProgressBar bar = new JProgressBar();
bar.setPreferredSize(new Dimension(0, 30));
getContentPane().add(BorderLayout.SOUTH, bar);
JPanel panel2 = new JPanel();
panel2.setLayout(new BoxLayout(panel2, BoxLayout.PAGE_AXIS));
JButton btnLoad = new JButton("LoadProgress");
JButton leftbutton = new JButton("Hinzufügen");
panel2.add(leftbutton);
panel2.add(Box.createVerticalGlue());
panel2.add(btnLoad);
getContentPane().add(BorderLayout.WEST, panel2);
leftbutton.addActionListener(new ActionListener() {
@Override
public void actionPerformed(ActionEvent arg0) {
if(arg0.getActionCommand().equals("Hinzufügen")) {
JButton test = new JButton("TEST");
panel2.add(test);
}
}
});
btnLoad.addActionListener(new ActionListener() {
@Override
public void actionPerformed(ActionEvent e) {
// TODO Auto-generated method stub
new Thread() {
@Override
public void run() {
if(e.getActionCommand().equals("LoadProgress")) {
bar.setStringPainted(true);
for ( int f = 1; f <= 100; f++) {
try {
Thread.sleep((long) (Math.random() * 100));
}catch (InterruptedException ex){
ex.printStackTrace();
}
bar.setString("Lade Bestand..." + f + "%");
bar.setValue(f);
}
bar.setValue(0);
bar.setStringPainted(false);
}
}
}.start();
}});
};
java swing button jpanel actionlistener
I am trying to program my first own Java Application and I want to create a buttons into the GUI. Here is the program I want to run.
If I click on an existing button in the GUI. I would be adding an ActionListener
but I just want add a Button only. If I click both Buttons in my GUI. First run LoadProgress
then Hinzufügen
. How can I fix it so that I create a Button only if I click on the Hinzufügen
Button.
private void pnlLeft(){
JProgressBar bar = new JProgressBar();
bar.setPreferredSize(new Dimension(0, 30));
getContentPane().add(BorderLayout.SOUTH, bar);
JPanel panel2 = new JPanel();
panel2.setLayout(new BoxLayout(panel2, BoxLayout.PAGE_AXIS));
JButton btnLoad = new JButton("LoadProgress");
JButton leftbutton = new JButton("Hinzufügen");
panel2.add(leftbutton);
panel2.add(Box.createVerticalGlue());
panel2.add(btnLoad);
getContentPane().add(BorderLayout.WEST, panel2);
leftbutton.addActionListener(new ActionListener() {
@Override
public void actionPerformed(ActionEvent arg0) {
if(arg0.getActionCommand().equals("Hinzufügen")) {
JButton test = new JButton("TEST");
panel2.add(test);
}
}
});
btnLoad.addActionListener(new ActionListener() {
@Override
public void actionPerformed(ActionEvent e) {
// TODO Auto-generated method stub
new Thread() {
@Override
public void run() {
if(e.getActionCommand().equals("LoadProgress")) {
bar.setStringPainted(true);
for ( int f = 1; f <= 100; f++) {
try {
Thread.sleep((long) (Math.random() * 100));
}catch (InterruptedException ex){
ex.printStackTrace();
}
bar.setString("Lade Bestand..." + f + "%");
bar.setValue(f);
}
bar.setValue(0);
bar.setStringPainted(false);
}
}
}.start();
}});
};
java swing button jpanel actionlistener
java swing button jpanel actionlistener
edited Nov 21 '18 at 19:03


c1pherB1t
2,32453155
2,32453155
asked Nov 21 '18 at 17:47


CJ KevCJ Kev
31
31
add a comment |
add a comment |
1 Answer
1
active
oldest
votes
When you add (or remove) a component from a visible GUI the basic code is:
panel.add(...);
panel.revalidate(); // invokes layout manager
panel.repaint();
Otherwise the component has a default size of (0, 0) so there is nothing to paint.
thank you very much. It worked. I just wrote it under the panel.add(test).
– CJ Kev
Nov 21 '18 at 18:05
add a comment |
Your Answer
StackExchange.ifUsing("editor", function () {
StackExchange.using("externalEditor", function () {
StackExchange.using("snippets", function () {
StackExchange.snippets.init();
});
});
}, "code-snippets");
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "1"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});
function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});
}
});
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53417872%2fadding-buttons-to-a-jpanel-with-an-existing-button-in-gui%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
When you add (or remove) a component from a visible GUI the basic code is:
panel.add(...);
panel.revalidate(); // invokes layout manager
panel.repaint();
Otherwise the component has a default size of (0, 0) so there is nothing to paint.
thank you very much. It worked. I just wrote it under the panel.add(test).
– CJ Kev
Nov 21 '18 at 18:05
add a comment |
When you add (or remove) a component from a visible GUI the basic code is:
panel.add(...);
panel.revalidate(); // invokes layout manager
panel.repaint();
Otherwise the component has a default size of (0, 0) so there is nothing to paint.
thank you very much. It worked. I just wrote it under the panel.add(test).
– CJ Kev
Nov 21 '18 at 18:05
add a comment |
When you add (or remove) a component from a visible GUI the basic code is:
panel.add(...);
panel.revalidate(); // invokes layout manager
panel.repaint();
Otherwise the component has a default size of (0, 0) so there is nothing to paint.
When you add (or remove) a component from a visible GUI the basic code is:
panel.add(...);
panel.revalidate(); // invokes layout manager
panel.repaint();
Otherwise the component has a default size of (0, 0) so there is nothing to paint.
answered Nov 21 '18 at 17:58
camickrcamickr
275k15127239
275k15127239
thank you very much. It worked. I just wrote it under the panel.add(test).
– CJ Kev
Nov 21 '18 at 18:05
add a comment |
thank you very much. It worked. I just wrote it under the panel.add(test).
– CJ Kev
Nov 21 '18 at 18:05
thank you very much. It worked. I just wrote it under the panel.add(test).
– CJ Kev
Nov 21 '18 at 18:05
thank you very much. It worked. I just wrote it under the panel.add(test).
– CJ Kev
Nov 21 '18 at 18:05
add a comment |
Thanks for contributing an answer to Stack Overflow!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53417872%2fadding-buttons-to-a-jpanel-with-an-existing-button-in-gui%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown