📄 test.java~3~
字号:
package dialog;import javax.swing.*;import java.awt.*;/** * Title: * Description: * Copyright: Copyright (c) 2001 * Company: * @author * @version 1.0 */public class test extends JPanel { BorderLayout borderLayout1 = new BorderLayout(); JTextArea jTextArea1 = new JTextArea(); public test() { try { jbInit(); } catch(Exception e) { e.printStackTrace(); } } public static void main(String[] args) { JFrame jf=new JFrame(); jf.setSize(300,200); test test1 = new test(); jf.getContentPane().add(test1); jf.show(); } private void jbInit() throws Exception { jTextArea1.setText("jTextArea1"); this.setLayout(borderLayout1); this.add(jTextArea1, BorderLayout.CENTER); }}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -