gpt4 book ai didi

java - 如何设置 JButton 的大小?

转载 作者:塔克拉玛干 更新时间:2023-11-02 08:17:09 24 4
gpt4 key购买 nike

我正在尝试设置 JButton 的大小,但默认情况下它占据整个框架,它的高度很容易设置,但我无法设置它的宽度,我也不知道为什么它会这样。

我的代码:

    JButton btnNewButton = new JButton("");
btnNewButton.setPreferredSize(new Dimension(32,0));
ImageIcon icon = new ImageIcon(this.getClass().getResource("/images/images_Left.png"));
btnNewButton.setIcon(icon);
boxTlacitek.add(btnNewButton);
getContentPane().add(btnNewButton, BorderLayout.NORTH);

有什么建议吗?

最佳答案

改变布局。尝试将按钮添加到另一个 JPanel,然后将面板添加到框架中。当组件位于NORTHSOUTH 位置时,BorderLayout 会将按钮拉伸(stretch)到面板的可用宽度

enter image description here

import java.awt.BorderLayout;
import java.awt.EventQueue;
import javax.swing.JButton;
import javax.swing.JFrame;
import javax.swing.JPanel;
import javax.swing.UIManager;
import javax.swing.UnsupportedLookAndFeelException;

public class TestBorderLayout {

public static void main(String[] args) {
new TestBorderLayout();
}

public TestBorderLayout() {
EventQueue.invokeLater(new Runnable() {
@Override
public void run() {
try {
UIManager.setLookAndFeel(UIManager.getSystemLookAndFeelClassName());
} catch (ClassNotFoundException | InstantiationException | IllegalAccessException | UnsupportedLookAndFeelException ex) {
}

JButton fat = new JButton("Fat");
JButton skinny = new JButton("Skinny");

JPanel buttonPane = new JPanel();
buttonPane.add(skinny);

JFrame frame = new JFrame("Testing");
frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
frame.setLayout(new BorderLayout());
frame.add(fat, BorderLayout.NORTH);
frame.add(buttonPane, BorderLayout.SOUTH);
frame.pack();
frame.setLocationRelativeTo(null);
frame.setVisible(true);
}
});
}

}

关于java - 如何设置 JButton 的大小?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18201495/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com