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

📄 505139bb92560019109f97d84330f2ed

📁 此程序是对音像店的管理系统,测试播放音象等功能
💻
字号:
import java.awt.*;
public class AboutSystem {
	GeneralFrame aboutFrame=new GeneralFrame("关于...");
	Label aboutLabel1,aboutLabel2,aboutLabel3;
	
	public AboutSystem(){
	    aboutFrame.setSize(250,110);
	    aboutLabel1=new Label("403工作室 樊鹏飞 张毅飞 杨亮亮");
	    aboutLabel1.setBackground(Color.orange);
	    aboutLabel2=new Label("联系方式:13785656403");
	    aboutLabel2.setBackground(Color.orange);
	    aboutLabel3=new Label("欢迎支持我们自己做的软件!谢谢!!!");
	    aboutLabel3.setBackground(Color.orange);
	    aboutFrame.setLayout(new GridLayout(3,1));
	    aboutFrame.add1(aboutLabel1);
	    aboutFrame.add1(aboutLabel2);
	    aboutFrame.add1(aboutLabel3);
	    aboutFrame.setResizable(false);
	}
	void showAboutFrame(){
	    aboutFrame.show();
	}

}

⌨️ 快捷键说明

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