englishtest.java

来自「本文件包中包含了15个java课程设计。对java学习是很不错的。」· Java 代码 · 共 40 行

JAVA
40
字号
/* * To change this template, choose Tools | Templates * and open the template in the editor. */package englishtest;/** * * @author Administrator */import java.awt.*;import java.awt.event.*;import javax.swing.*;public class EnglishTest extends JFrame{  TestArea testPanel=null;  Container con=null;  public EnglishTest()  {    super("标准化模拟考试");    testPanel=new TestArea();    con=getContentPane();    con.add(testPanel,BorderLayout.CENTER);     addWindowListener(new WindowAdapter()                 { public void windowClosing(WindowEvent e)                     { System.exit(0);      	             }                 });    setVisible(true);    setBounds(60,40,660,460);    con.validate();    validate();  } public static void main(String args[])   {      new EnglishTest();   }}

⌨️ 快捷键说明

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