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

📄 showrecord.java

📁 八皇后源代码 JAVA课设 应该满足您的要求
💻 JAVA
字号:
/*
 * ShowRecord.java
 *
 * Created on 2008年3月12日, 下午12:43
 *
 * To change this template, choose Tools | Template Manager
 * and open the template in the editor.
 */

package eight;

import java.awt.*;
import java.awt.event.*;
import java.io.*;
import java.util.*;
import javax.swing.*;

/**
 *
 * @author 刘杨
 */
public class ShowRecord extends JFrame{
    /** Creates a new instance of ShowRecord */
    public ShowRecord(File file4,File file5,File file6,File file7,File file8,
            File file9,File file10,File file11,File file12){
        super("排行榜");
        
        JTabbedPane con=new JTabbedPane();
        con.addTab("4*4",new file(file4,this));
        con.addTab("5*5",new file(file5,this));
        con.addTab("6*6",new file(file6,this));
        con.addTab("7*7",new file(file7,this));
        con.addTab("8*8",new file(file8,this));
        con.addTab("9*9",new file(file9,this));
        con.addTab("10*10",new file(file10,this));
        con.addTab("11*11",new file(file11,this));
        con.addTab("12*12",new file(file12,this));

        this.setBounds(100,100,450,200);
        this.setVisible(false);
        
        this.add(con);
    }
    
    
}

⌨️ 快捷键说明

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