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.
我使用 NetBeans 设计器设计了一个 Swing GUI,这意味着它是一个GroupLayout. 我想进入并手动更改它创建的垂直组之一中的元素,但是该代码是不可编辑的,我在属性对话框中看不到任何允许我执行此操作的内容。有什么建议么?
GroupLayout
GroupLayoutGUI 设计器中的代码生成属性支持非常有限;生成的代码几乎完全取决于设计师的定位。您可能需要检查可用于其他布局的属性以进行比较,例如GridBagLayout.
GridBagLayout
虽然将设计器用于整个GUI 很诱人,但您可能需要考虑此处显示的方法,其中设计器的使用仅限于单个顶级容器中的一个(或几个)面板。