📄 demosplitpaneframe.java
字号:
/* * To change this template, choose Tools | Templates * and open the template in the editor. */package swing;import javax.swing.JButton;import javax.swing.JFrame;import javax.swing.JSplitPane;/** * * @author zhaolin */public class DemoSplitPaneFrame extends JFrame{ public DemoSplitPaneFrame(){ JSplitPane jsp1 = new JSplitPane(JSplitPane.VERTICAL_SPLIT); JSplitPane jsp2 = new JSplitPane(JSplitPane.HORIZONTAL_SPLIT); JSplitPane jsp3 = new JSplitPane(JSplitPane.VERTICAL_SPLIT); jsp1.add(new JButton("Button1"),JSplitPane.BOTTOM); jsp1.add(jsp2,JSplitPane.TOP); jsp2.add(new JButton("Button2"),JSplitPane.RIGHT); jsp2.add(jsp3,JSplitPane.LEFT); jsp3.add(new JButton("Button3"),JSplitPane.TOP); jsp3.add(new JButton("Button4"),JSplitPane.BOTTOM); this.getContentPane().add(jsp1); this.pack(); this.setVisible(true); } public static void main(String[] args) { new DemoSplitPaneFrame(); }}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -