1

我一直在使用 netbeans 设计器模式设计应用程序。一直很顺利,但是有个问题:我设计的时候布局很好看,但是运行程序就乱七八糟了,大家可以对比一下。

如您所见,它在设计器窗口中看起来很好并且对齐良好:

设计视图

但是,当我运行程序时,对齐变得一团糟

跑

每个标签和 jTextField 都位于一个小的单独面板中,以使某些事情变得更容易。

我想知道如何防止这种情况发生,谢谢您的时间。

4

1 回答 1

5

The short answer, don't use the "free form layout", it gets screwy real quickly.

Use instead something like GridBagLayout.

Layout each separate group it's own pane and drag them into the master pane.

于 2012-10-02T02:27:25.847 回答