日期:2014-05-20 浏览次数:20784 次
import javax.swing.*;
public class Test {
public static void main(String[] args) {
JSplitPane topPane = new JSplitPane(JSplitPane.VERTICAL_SPLIT,
new JButton("One"),
new JButton("Two"));
JSplitPane mainPane = new JSplitPane(JSplitPane.VERTICAL_SPLIT,
topPane,
new JButton("Three"));
topPane.setBorder(null);
mainPane.setBorder(null);
JFrame frame = new JFrame();
frame.setContentPane(mainPane);
frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
frame.setSize(300, 300);
frame.setLocationRelativeTo(null);
frame.setVisible(true);
}
}