我正在设计一个 FullScreen 桌面应用程序,使用 Eclipse Window Builder 工具包
,我在设计时发现了这个奇怪的问题,
我正在使用 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");
那是我很好奇的事情,最重要的是这是问题所在。任何人都可以澄清我应该怎么做才能让内容窗格扩展到全尺寸,因为框架是在设计时...thanx ..