6

我在 Java 中创建了一个简单的菜单,但我不知道如何更改按钮的大小。我的菜单如下所示: 当前外观

我希望最后一个按钮与其他按钮具有相同的大小。

tlacTisk.setSize(10,10);
tlacTisk.setPreferredSize(10,10);

不起作用。

代码,我在其中创建了按钮和框:

JButton tlacSVG = new JButton();
        tlacSVG.setText("Export do SVG");
        tlacSVG.addActionListener(new ActionListener()
        {
            @Override
            public void actionPerformed(ActionEvent e)
            {
                exportujSVG();
            }
        });

        JButton tlacPNG = new JButton();
        tlacPNG.setText("Export do PNG");
        tlacPNG.addActionListener(new ActionListener()
        {
            @Override
            public void actionPerformed(ActionEvent e)
            {
                exportujPNG();
            }
        });

        JButton tlacTisk = new JButton();
        tlacTisk.setText("Tisk...");
        tlacTisk.setPreferredSize(new Dimension(50, 25));
        tlacTisk.addActionListener(new ActionListener()
        {
            @Override
            public void actionPerformed(ActionEvent e)
            {
                tiskni();
            }
        });


        Box boxTlacitek = Box.createVerticalBox();
        boxTlacitek.add(Box.createVerticalStrut(5));
        boxTlacitek.add(tlacSVG);
        boxTlacitek.add(Box.createVerticalStrut(10));
        boxTlacitek.add(tlacPNG);
        boxTlacitek.add(Box.createVerticalStrut(10));
        boxTlacitek.add(tlacTisk);
        boxTlacitek.setBorder(BorderFactory.createTitledBorder("Menu"));

        okno.add(boxTlacitek, BorderLayout.EAST);

你能告诉我如何改变尺寸吗?谢谢。

4

2 回答 2

12

不同的布局管理器以不同的方式对待首选尺寸。此外,设置大小setSize()不是一个好主意。让布局管理器为您做布局。有关更多详细信息和示例,请参阅布局管理器视觉指南。

例如,您可以创建一个单独的面板来保存按钮。将其布局设置为GridLayout. 在此布局中,组件占用了其单元格内的所有可用空间,并且每个单元格的大小完全相同。将此面板添加到容器中。有关示例,请参见如何使用 GridLayout

下面是一个简单的GridLayoutand演示GridBagLayout

在此处输入图像描述

import java.awt.*;
import javax.swing.*;

public class DemoButtons {
    public DemoButtons() {
        final JFrame frame = new JFrame("Demo buttons");
        frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);

        JPanel buttonPanel = new JPanel(new GridLayout(3, 1));
        buttonPanel.add(new JButton("Export do SVG"));
        buttonPanel.add(new JButton("Export do PNG"));
        buttonPanel.add(new JButton("Tisk..."));

        JPanel east = new JPanel(new GridBagLayout());
        GridBagConstraints gbc = new GridBagConstraints();
        gbc.anchor = GridBagConstraints.NORTH;
        gbc.weighty = 1;
        east.add(buttonPanel, gbc);

        JPanel center = new JPanel(){
            @Override
            public Dimension getPreferredSize() {
                return new Dimension(200, 200);
            }
        };
        center.setBorder(BorderFactory.createLineBorder(Color.BLACK));

        frame.add(east, BorderLayout.EAST);
        frame.add(center);

        frame.pack();
        frame.setVisible(true);
    }

    public static void main(String[] args) {
        try {
            UIManager.setLookAndFeel(UIManager.getSystemLookAndFeelClassName());
        } catch (Exception e) {
            e.printStackTrace();
        }
        SwingUtilities.invokeLater(new Runnable() {
            @Override
            public void run() {
                new DemoButtons();
            }
        });
    }
}   
于 2013-03-28T16:20:56.367 回答
3

您不应该尝试直接控制按钮(或组件)的大小,请使用容器的布局管理器配置(在您的情况下为菜单面板)来这样做。

为此,请查看不同的 Swing Layout Managers: Swing Layout Managers

我个人更喜欢 JGoodies 表单 API,我发现它对用户来说更简单,并且随着时间的推移易于维护: JGoodies Forms API

问候

于 2013-03-28T16:24:40.367 回答