📄 frame18.java~6~
字号:
package bookmanagesystem;
import java.awt.*;
import javax.swing.*;
import java.awt.Rectangle;
/**
* <p>Title: </p>
*
* <p>Description: </p>
*
* <p>Copyright: Copyright (c) 2008</p>
*
* <p>Company: </p>
*
* @author not attributable
* @version 1.0
*/
public class Frame18 extends JFrame {
public Frame18() {
try {
setBounds(300,250,400,300);
jbInit();
} catch (Exception exception) {
exception.printStackTrace();
}
}
private void jbInit() throws Exception {
getContentPane().setLayout(null);
this.getContentPane().setBackground(new Color(0, 66, 92));
this.setJMenuBar(jMenuBar1);
this.setResizable(false);
this.setTitle("图书管理系统");
this.setVisible(true);
jLabel1.setBounds(new Rectangle(1, 1, 399, 299));
this.getContentPane().add(jLabel1);
}
JMenuBar jMenuBar1 = new JMenuBar();
JLabel jLabel1 = new JLabel();
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -