📄 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 + -