我正在使用Eclipse Window Builder工具包设计一个FullScreen桌面应用程序 而且,我在设计中发现了这个奇怪的问题 我正在使用GroupLayout,我必须在其上放置组件,但您可以在我提供的图像中看到正在放置的组件之间的差异。
这是IDE生成的源代码:
package info.visual.gui;
import java.awt.EventQueue;
import javax.swing.JFrame;
import java.awt.Color;
import javax.swing.GroupLayout;
import javax.swing.GroupLayout.Alignment;
import javax.swing.JButton;
public class MDI {
public JFrame frame;
/**
* @wbp.nonvisual location=487,159
*/
private final JButton button = new JButton("New button");
/**
* Launch the application.
*/
public static void main(String[] args) {
EventQueue.invokeLater(new Runnable() {
public void run() {
try {
MDI window = new MDI();
window.frame.setVisible(true);
} catch (Exception e) {
e.printStackTrace();
}
}
});
}
/**
* Create the application.
*/
public MDI() {
initialize();
}
/**
* Initialize the contents of the frame.
*/
private void initialize() {
frame = new JFrame();
frame.getContentPane().setBackground(new Color(0, 0, 0));
JButton btnButton = new JButton("button1");
GroupLayout groupLayout = new GroupLayout(frame.getContentPane());
groupLayout.setHorizontalGroup(
groupLayout.createParallelGroup(Alignment.LEADING)
.addGroup(Alignment.TRAILING, groupLayout.createSequentialGroup()
.addContainerGap(319, Short.MAX_VALUE)
.addComponent(btnButton)
.addGap(26))
);
groupLayout.setVerticalGroup(
groupLayout.createParallelGroup(Alignment.LEADING)
.addGroup(groupLayout.createSequentialGroup()
.addGap(113)
.addComponent(btnButton)
.addContainerGap(125, Short.MAX_VALUE))
);
frame.getContentPane().setLayout(groupLayout);
frame.setExtendedState(6);
frame.setResizable(true);
frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
}
}
查看这些代码行
/**
* @wbp.nonvisual location=487,159
*/
private final JButton button = new JButton("New button");
这是我很好奇的事情,最重要的是这就是问题所在。 任何人都可以澄清我应该怎样做才能使内容窗格扩展到完整尺寸,因为框架在设计时... 感谢名单..
答案 0 :(得分:0)
我有同样的问题,我通过调整框架而不是ContentPane来解决它 只需拖放框架(窗口)的右下角,直到到达框架的中间(例如),ContentPane现在应该有一个新的尺寸,你应该看到你的组件正确。