⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 simplesplitpane.java

📁 java swing 开发代码
💻 JAVA
字号:
// SimpleSplitPane.java// A quick test of the JSplitPane class.//package	jswing.ch11;import java.awt.*;import javax.swing.*;public class SimpleSplitPane extends JFrame {  static String sometext = "This is a simple text string that is long enough " +    "to wrap over a few lines in the simple demo we're about to build.  " +    "We'll put two text areas side by side in a split pane.";  public SimpleSplitPane() {    super("Simple SplitPane Frame");    setSize(450, 200);    setDefaultCloseOperation(EXIT_ON_CLOSE);    JTextArea jt1 = new JTextArea(sometext);    JTextArea jt2 = new JTextArea(sometext);    // Make sure our text boxes do line wrapping and have reasonable    // minimum sizes.    jt1.setLineWrap(true);    jt2.setLineWrap(true);    jt1.setMinimumSize(new Dimension(150, 150));    jt2.setMinimumSize(new Dimension(150, 150));    jt1.setPreferredSize(new Dimension(250, 200));    JSplitPane sp = new JSplitPane(JSplitPane.HORIZONTAL_SPLIT, jt1, jt2);    getContentPane().add(sp, BorderLayout.CENTER);  }  public static void main(String args[]) {    SimpleSplitPane ssb = new SimpleSplitPane();    ssb.setVisible(true);  }}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -