f0859389e05600191302948632f6c478
来自「此程序是对音像店的管理系统,测试播放音象等功能」· 代码 · 共 25 行
TXT
25 行
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 + =
减小字号Ctrl + -
显示快捷键?