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

📄 4077d648e35600191302948632f6c478

📁 此程序是对音像店的管理系统,测试播放音象等功能
💻
字号:
import java.awt.*;
//import javax.swing.event.*;

public class NoFindFrame {
	GeneralFrame NoFrame1;
	Label NoLabel;
    public NoFindFrame(){
        NoFrame1=new GeneralFrame("找不到哟");
        Container NoFrame=NoFrame1.getContentPane();
        NoLabel=new Label("对不起,没有找到你想要的资料,请查询输入是否正确或重新搜索");
        NoFrame.setSize(400,80);
        NoLabel.setBackground(Color.cyan);
        NoFrame.add(NoLabel);
        //NoFrame1.setResizable(false);
    }
    void showFrame(){
        NoFrame1.show();
    }
}

⌨️ 快捷键说明

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