90e704e4e05600191302948632f6c478
来自「此程序是对音像店的管理系统,测试播放音象等功能」· 代码 · 共 26 行
TXT
26 行
import java.awt.*;
public class AboutSystem {
GeneralFrame aboutFrame1=new GeneralFrame("关于...");
Label aboutLabel1,aboutLabel2,aboutLabel3;
public AboutSystem(){
Container aboutFrame=getContentPane();
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.add(aboutLabel1);
aboutFrame.add(aboutLabel2);
aboutFrame.add(aboutLabel3);
aboutFrame1.setResizable(false);
}
void showAboutFrame(){
aboutFrame1.show();
}
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?