我应该使用什么样的布局来创建一个页面 像这样: 它应该可以调整大小 它有两个主面板Right 和 Left?
问问题
1210 次
4 回答
4
'Main Text' 文本区域将获得额外的空间,按钮面板在居中时将获得额外的高度。
import java.awt.*;
import javax.swing.*;
import javax.swing.border.EmptyBorder;
public class EndOfLineButtonLayout {
public static void main(String[] args) {
Runnable r = new Runnable() {
@Override
public void run() {
// the GUI as seen by the user (without frame)
JPanel gui = new JPanel(new BorderLayout());
gui.setBorder(new EmptyBorder(2, 3, 2, 3));
JPanel textPanel = new JPanel(new BorderLayout(5,5));
textPanel.add(new JScrollPane(new JTextArea("Top Text",3,20)),
BorderLayout.PAGE_START);
textPanel.add(new JScrollPane(new JTextArea("Main Text",10,10)));
gui.add(textPanel, BorderLayout.CENTER);
JPanel buttonCenter = new JPanel(new GridBagLayout());
buttonCenter.setBorder(new EmptyBorder(5,5,5,5));
JPanel buttonPanel = new JPanel(new GridLayout(0,1,5,5));
for (int ii=1; ii<6; ii++) {
buttonPanel.add(new JButton("Button " + ii));
}
// a component added to a GBL with no constraint will be centered
buttonCenter.add(buttonPanel);
gui.add(buttonCenter, BorderLayout.LINE_END);
JFrame f = new JFrame("Demo");
f.add(gui);
// Ensures JVM closes after frame(s) closed and
// all non-daemon threads are finished
f.setDefaultCloseOperation(JFrame.DISPOSE_ON_CLOSE);
// See http://stackoverflow.com/a/7143398/418556 for demo.
f.setLocationByPlatform(true);
// ensures the frame is the minimum size it needs to be
// in order display the components within it
f.pack();
// should be done last, to avoid flickering, moving,
// resizing artifacts.
f.setVisible(true);
}
};
// Swing GUIs should be created and updated on the EDT
// http://docs.oracle.com/javase/tutorial/uiswing/concurrency/initial.html
SwingUtilities.invokeLater(r);
}
}
于 2013-07-26T14:38:14.780 回答
0
你可以使用gridbag布局,尝试使用netbeans,我试过了,发现真的很有用。一旦你用 netbeans 创建了它,你就可以使用它并构建任何类型的布局。
祝其他解决方案好运。
ps 边框布局非常适合您的要求,但我提到这一点是为了以防您想做更多。
于 2013-07-26T14:13:40.287 回答
0
我会使用边框布局。
创建三个 JPanel 并将它们添加到 JFrame,如下所示:
public class YourClass extends JFrame{
//code here
this.setLayout(new BorderLayout());
this.add(TopPanel, BorderLayout.NORTH);
this.add(RightPanel, BorderLayout.EAST);
this.add(MainPanel, BorderLayout.CENTER);
this.pack();
this.setVisible(true);
于 2013-07-26T14:18:17.320 回答
0
两个主面板将使用 BorderLayout 放置在主 JPanel 内。左侧面板将使用 BorderLayout.CENTER 放置,右侧面板将使用 BorderLayout.LINE_END 放置。
左侧面板将使用 BoxLayout,Y 轴来分隔左侧面板中的两个 JPanel。
右侧按钮面板将使用 GridBagLayout。这使按钮的大小相同,并允许您使用 Insets 为按钮添加一些间距。
按钮将从右侧按钮面板的顶部到底部间隔开。如果您希望所有按钮都位于右侧按钮面板的顶部,您可以使用 FlowLayout 将右侧按钮面板放在另一个 JPanel 内。
于 2013-07-26T14:18:34.183 回答