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.
我有一个带有空布局的JPanel(应该保留)和一个简单的蚀刻边框。现在我想在最深处设置一个按钮的位置;为此,我需要边框的宽度。我怎样才能得到这个? Component.insets().bottom工作正常,但这种方法已被弃用。有没有更新的东西?谢谢!
Component.insets().bottom
编辑:对不起我的英语。并感谢downvotingm .. -.-
int base = myComponent.getInsets().bottom;
从文档
已弃用。从 JDK 1.1 版开始,由 getInsets() 取代。
Swing 旨在使用布局管理器。绝对更好地使用一个来定位和调整组件大小。它应该消除确定组件基本位置的必要性。