?? information.java
字號:
package huazheng;
import java.awt.Color;
import javax.swing.*;
import javax.swing.JFrame;
public class Information {
public void huazheng(){
JTextArea area=new JTextArea();
area.setEditable(false);
area.setBackground(Color.MAGENTA);
area.setText("信計031");
JFrame frame=new JFrame("班級信息");
frame.setLocation(200,100);
// frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
frame.setSize(300,300);
frame.add(area);
frame.setVisible(true);
}
public static void main(String[] args) {
Information inf=new Information();
inf.huazheng();
}
}
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -