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 GUI Builder 的“捕捉”行为感到困惑——当我在容器内移动组件时,那些虚线(以及它们施加的磁力)。是由布局管理器决定的吗?还是通过容器属性(例如 Insets)?我没想到绝对布局对对齐有任何“偏好”,但即使它似乎也有一些“网格”的概念,它将我的组件拉向它。如何或在哪里改变这一点?
您必须使用变通方法来执行此操作。
如果你这样做...
...setLayout(null);
然后,您将捕捉到 10 x 10 像素。
如果你想变得更好,你必须做这样的事情:
http://forums.netbeans.org/post-37209.html