📄 e631. adjusting the size of a component in a gridbadlayout using internal padding.txt
字号:
With internal padding, you can increase or decrease the minimum size of a component. For example, if the minimum width of a component is 10 and ipadx is 2, the minimum width of the component within the gridbag layout becomes 14.
See e622 Creating a GridBagLayout for an example on how to use a gridbag layout with gridbag constraints.
GridBagConstraints gbc = new GridBagConstraints();
gbc.ipadx = 2;
gbc.ipady = 4;
Related Examples
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -