Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I am adding checkboxes on JPanel in flowLayout the checkboxes are being added horizontally

i want to add checkboxes vertically on JPanel using what is the possible solution for it please suggest.

share|improve this question
FlowLayout is doing what it suggests, flowing components left to right till it has no space and then goes on next line, with different layouts you can do what you need. – AbstractChaos Nov 22 '12 at 10:30
what layout i should use for it – adesh Nov 22 '12 at 10:32
I would suggest a BoxLayout – AbstractChaos Nov 22 '12 at 10:33
Use WindowBuilder Pro – user714965 Nov 22 '12 at 10:35
@user714965 as much as google helps with doing UI work an understanding of how it does it is still important – AbstractChaos Nov 22 '12 at 10:36
show 1 more comment

2 Answers

up vote -1 down vote accepted

I hope what you are trying to achieve is like this. For this please use Box layout.

package com.kcing.kailas.sample.client;

import javax.swing.BoxLayout;
import javax.swing.JCheckBox;
import javax.swing.JFrame;
import javax.swing.JPanel;
import javax.swing.SwingUtilities;
import javax.swing.UIManager;
import javax.swing.WindowConstants;

public class Testing extends JFrame {

private static final long serialVersionUID = 1L;
private JPanel jContentPane = null;

/**
 * This is the default constructor
 */
public Testing() {
    super();
    initialize();
}

/**
 * This method initializes this
 * 
 * @return void
 */
private void initialize() {
    this.setSize(300, 200);
    this.setContentPane(getJContentPane());
    this.setTitle("JFrame");
}

/**
 * This method initializes jContentPane
 * 
 * @return javax.swing.JPanel
 */
private JPanel getJContentPane() {
    if (jContentPane == null) {
        jContentPane = new JPanel();
        jContentPane.setLayout(null);

        JPanel panel = new JPanel();

        panel.setBounds(61, 11, 81, 140);
        panel.setLayout(new BoxLayout(panel, BoxLayout.Y_AXIS));
        jContentPane.add(panel);

        JCheckBox c1 = new JCheckBox("Check1");
        panel.add(c1);
        c1 = new JCheckBox("Check2");
        panel.add(c1);
        c1 = new JCheckBox("Check3");
        panel.add(c1);
        c1 = new JCheckBox("Check4");
        panel.add(c1);


    }
    return jContentPane;
}
public static void main(String[] args) throws Exception {
    Testing frame = new Testing();
    SwingUtilities.updateComponentTreeUI(frame);
    frame.setVisible(true);
    frame.setDefaultCloseOperation(WindowConstants.DISPOSE_ON_CLOSE);
}
}
share|improve this answer
1  
UIManager.setLookAndFeel("com.sun.java.swing.plaf.windows.WindowsLookAndFeel");‌​ Ughh.. that would look horrid on OS X & *nix, though fortunately it would fail completely on either system. SeeUIManager.getSystemLookAndFeelClassName() instead. – Andrew Thompson Nov 22 '12 at 11:25
Thanks for the comment Andrew Thompson. I am removing this. – Sunil luitel Nov 22 '12 at 11:31
1  
... and the basic approach (use BoxLayout) differs from the earlier answer by @AbstractChaos in that .. ? Except being worse: null layout in contentpane? manual sizing/positioning of panel? nononono, don't. And what is the updateComponentTreeUI supposed to achieve here? – kleopatra Nov 22 '12 at 11:37

As I stated in comment i would use a box layout for this.

JPanel panel = new JPanel();
panel.setLayout(new BoxLayout());

JButton button = new JButton("Button1");
button.setAlignmentX(Component.CENTER_ALIGNMENT);
panel.add(button);

button = new JButton("Button2");
button.setAlignmentX(Component.CENTER_ALIGNMENT);
panel.add(button);

button = new JButton("Button3");
button.setAlignmentX(Component.CENTER_ALIGNMENT);
panel.add(button);

add(panel);
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.