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

📄 englishtest.java

📁 单机版的考试系统
💻 JAVA
字号:
/* * 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 + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -