Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]


Groups > comp.lang.java.programmer > #9930

Re: How to align swing buttons vertically ?

From Lew <lewbloch@gmail.com>
Newsgroups comp.lang.java.programmer
Subject Re: How to align swing buttons vertically ?
Date 2011-11-13 11:03 -0800
Organization http://groups.google.com
Message-ID <2442894.209.1321211019540.JavaMail.geo-discussion-forums@prew38> (permalink)
References <4ebf9c51$0$5055$ba620e4c@news.skynet.be> <j9oef0$ti8$2@localhost.localdomain> <4ebfc473$0$5044$ba620e4c@news.skynet.be> <j9okpi$va3$1@localhost.localdomain> <4ebffe4c$0$5045$ba620e4c@news.skynet.be>

Show all headers | View raw


Olivier Scalbert wrote:
> Perhaps I have not understand, but with the following code, buttons are
> not well aligned:
> 
> import java.awt.*;
> import javax.swing.*;
> 
> public class TestViewer {
> 
>     public static void main(String[] args) {
>         EventQueue.invokeLater(new Runnable() {
>             public void run() {
>                 JFrame frame = new ViewerFrame();
>                 frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
>                 frame.setSize(800, 600);

Shouldn't you call 'pack()' right here?  Layouts often don't work well without it.

>                 frame.setVisible(true);
>             }
>         });
>     }
> }
> 
> class ViewerFrame extends JFrame {
> 
>     public ViewerFrame() {
>         getContentPane().add(new JPanel(), BorderLayout.CENTER);
>         getContentPane().add(createBtnPanel(), BorderLayout.EAST);
>     }
> 
>     private JPanel createBtnPanel() {
>         JPanel btnPanel = new JPanel();
> 
>         btnPanel.setLayout(new BoxLayout(btnPanel, BoxLayout.Y_AXIS));
> 
>         btnPanel.add(new JButton("Button 1"));
>         btnPanel.add(new JButton("Button 2"));
>         btnPanel.add(new JButton("Long Button 3"));
>         btnPanel.add(new JButton("Button 4"));
>         btnPanel.add(new JButton("Button 5"));
> 
>         return btnPanel;
>     }
> }

-- 
Lew

Back to comp.lang.java.programmer | Previous | NextPrevious in thread | Next in thread | Find similar | Unroll thread


Thread

How to align swing buttons vertically ? Olivier Scalbert <olivier.scalbert@algosyn.com> - 2011-11-13 11:30 +0100
  Re: How to align swing buttons vertically ? Martin Gregorie <martin@address-in-sig.invalid> - 2011-11-13 12:50 +0000
    Re: How to align swing buttons vertically ? Olivier Scalbert <olivier.scalbert@algosyn.com> - 2011-11-13 14:21 +0100
      Re: How to align swing buttons vertically ? Martin Gregorie <martin@address-in-sig.invalid> - 2011-11-13 14:38 +0000
        Re: How to align swing buttons vertically ? Olivier Scalbert <olivier.scalbert@algosyn.com> - 2011-11-13 18:28 +0100
          Re: How to align swing buttons vertically ? Knute Johnson <nospam@knutejohnson.com> - 2011-11-13 11:01 -0800
            Re: How to align swing buttons vertically ? Olivier Scalbert <olivier.scalbert@algosyn.com> - 2011-11-13 21:17 +0100
              Re: How to align swing buttons vertically ? Knute Johnson <nospam@knutejohnson.com> - 2011-11-13 16:16 -0800
          Re: How to align swing buttons vertically ? Martin Gregorie <martin@address-in-sig.invalid> - 2011-11-13 19:17 +0000
            Re: How to align swing buttons vertically ? Olivier Scalbert <olivier.scalbert@algosyn.com> - 2011-11-13 21:01 +0100
              Re: How to align swing buttons vertically ? "John B. Matthews" <nospam@nospam.invalid> - 2011-11-13 17:33 -0500
          Re: How to align swing buttons vertically ? Lew <lewbloch@gmail.com> - 2011-11-13 11:03 -0800
            Re: How to align swing buttons vertically ? Knute Johnson <nospam@knutejohnson.com> - 2011-11-13 16:28 -0800
  Re: How to align swing buttons vertically ? Roedy Green <see_website@mindprod.com.invalid> - 2011-11-13 09:27 -0800

csiph-web