0

我想要做的是将我的组件靠近我的应用程序的右侧。第二种选择是将其放在指定的 x,y 坐标中。但是我试过setBounds() setLocation()add(component, BorderLayout.LINE_END)。没有什么对我有用。我的代码有什么问题?

public class MapaSwiata extends JPanel implements ActionListener {

    private BufferedImage mapa;
    private File imageFile;

    public MapaSwiata(){
        super();

        imageFile = new File("C:\\Users\\Katie\\Documents\\Eclipse\\Samolot\\src\\Pics\\img_mapa.jpg");

        try {
            mapa = ImageIO.read(imageFile);
        } catch (IOException e) {
            // TODO Auto-generated catch block
            e.printStackTrace();
        }
        JOutlookBar outlookBar = new JOutlookBar();

        outlookBar.addBar( "Pogoda", getDummyPanel("One"));
        outlookBar.addBar( "Informacje o locie", getDummyPanel("Two" ));
        outlookBar.addBar( "Rozkład Lotow", getDummyPanel( "Three" ) );
        outlookBar.setVisibleBar( 2 );

        add(outlookBar, BorderLayout.LINE_END); 
    }

    public static JPanel getDummyPanel( String name )
    {
        JPanel panel = new JPanel( new BorderLayout() );
        panel.add( new JLabel( name, JLabel.CENTER ) );
        return panel;
    }

    @Override
    public void actionPerformed(ActionEvent arg0) {
        // TODO Auto-generated method stub
    }

    @Override
    public void paintComponent(Graphics g) {
        Graphics2D g2d = (Graphics2D) g;
        g2d.drawImage(mapa, 0, 0, getWidth()-300, getHeight()-150, null);
    }
}

我还尝试放入一个JButton或其他东西。一切总是出现在应用程序的顶部中心。对不起变量的波兰名称。

提前致谢

4

1 回答 1

1

如果你想让它BorderLayout.LINE_END有效果,你必须将BorderLayout应用于Container. 为此,只需添加

setLayout(new BorderLayout());

给你的构造函数MapaSwiata()

注意:您的子面板不需要BorderLayout.

于 2013-11-21T21:28:32.260 回答