myframe.java

来自「java课件」· Java 代码 · 共 23 行

JAVA
23
字号
import javax.swing.JFrame;
/*
 * MyFrame.java
 *
 * Created on 2007年10月20日, 下午10:19
 *
 * To change this template, choose Tools | Template Manager
 * and open the template in the editor.
 */

/**
 *
 * @author admin
 */
public class MyFrame {
  public static void main(String[] args)  {
    JFrame frame = new JFrame("My Frame-我的窗口");
    frame.setSize(400, 300);
    frame.setVisible(true);
    frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
  }
}

⌨️ 快捷键说明

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