作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我有一个带有网格布局且尺寸未知的 jpanel,我想知道如何从其上的组件获取尺寸信息。
这是一个例子:
JPanel basicInformation=new JPanel();
basicInformation.setMaximumSize(100,100);
basicInformation.setPreferredSize(basicInformation.getMaximumSize());
basicInformation.setSize(basicInformation.getMaximumSize());
basicInformation.setMinimumSize(basicInformation.getMaximumSize());
basicInformation.setLayout(new GridLayout(2, 2, 10, 10));
JLabel username=new JLabel("Example");
username.setHorizontalAlignment(JLabel.CENTER);
username.setOpaque(true);
basicInformation.add(username);
我想知道如何获取标签的尺寸?
最佳答案
JLabel继承GetSize来自组件,它应该返回一个维度供您使用。
您可以随时调用它,但如果框架或面板尚不可见(即仍在构造中),它将返回 0,0。在任何 .setVisible(true)
之后执行 getSize()
以获取正确的值。
关于java - 如何从gridlayout中知道组件的大小?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19862762/
我是一名优秀的程序员,十分优秀!