java swing 如何设置按钮大小_Java Swing - Button不改变宽度的大小

本文探讨了在Java Swing中遇到的问题,即如何设置按钮的宽度。作者尝试通过设置PreferredSize来改变“删除列”按钮的大小,但发现只能调整高度,宽度不变。解决方案建议使用GridLayout布局管理器来确保所有组件的宽度一致。
摘要由CSDN通过智能技术生成

我有一个使用FlowLayout的JPanel和一个垂直排列组件的Box。 我想要的是将其他组件的宽度大小设置为“删除列”按钮。 我试着线Java Swing - Button不改变宽度的大小

removeColumnButton.setPreferredSize(new Dimension(130, 25));

改变大小,但我只能改变其高度,宽度没有大小。

下面是面板和代码的屏幕截图:

YASfg.jpg

JPanel eastPanel = new JPanel(new FlowLayout(FlowLayout.CENTER, 5, 0));

Box eastPanelBox = Box.createVerticalBox();

addNewColumnButton = new JButton("Add New Column");

addNewColumnButton.setAlignmentX(Box.CENTER_ALIGNMENT);

eastPanelBox.add(addNewColumnButton);

eastPanelBox.add(Box.createVerticalStrut(5));

removeColumnButton = new JButton("Remove Column");

removeColumnButton.setAlignmentX(Box.CENTER_ALIGNMENT);

removeColumnButton.setPreferredSize(new Dimension(130, 25));

eastPanelBox.add(removeColumnButton);

eastPanelBox.add(Box.createVerticalStrut(5));

columnField = new JTextField();

columnField.setAlignmentX(Box.CENTER_ALIGNMENT);

columnField.setPreferredSize(new Dimension(130, 25));

eastPanelBox.add(columnField);

eastPanelBox.add(Box.createVerticalStrut(5));

columnListCB = new JComboBox(cBoxModel);

columnListCB.setAlignmentX(Box.CENTER_ALIGNMENT);

eastPanelBox.add(columnListCB);

eastPanelBox.add(Box.createVerticalStrut(5));

calculateColumnButton = new JButton("Calculate Column");

calculateColumnButton.setAlignmentX(Box.CENTER_ALIGNMENT);

eastPanelBox.add(calculateColumnButton);

eastPanel.add(eastPanelBox);

2014-05-05

Xerath

+1

对容纳组件列的容器使用GridLayout。用'new GridLayout(0,1,0,vGap)'初始化它,它代表1列,可变的行数。 vGap参数必须是表示组件之间垂直间隙的整数。 –

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值