Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
为我的框架使用布局时如何获取组件的大小?我可以注意到我正在为 JFrame 使用 BorderLayout,并且我想要 JPanel 的大小。
您可以尝试这些JPanel方法,getWidth()并且getHeight():
JPanel
getWidth()
getHeight()
int getWidth(); int getHeight();
他们将返回JPanel.
您还可以JPanel使用以下方法获取边界getBounds():
getBounds()
Rectangle getBounds();
它将返回一个Rectangle边界。您可以使用它来获取JPanel.
Rectangle