📄 paike.java
字号:
package untitled2;import javax.swing.*;import java.awt.*;import com.borland.jbcl.layout.*;/** * <p>Title: </p> * <p>Description: </p> * <p>Copyright: Copyright (c) 2006</p> * <p>Company: </p> * @author not attributable * @version 1.0 */public class paiKe extends JFrame { XYLayout xYLayout1 = new XYLayout(); JButton jButton1 = new JButton(); public paiKe() { try { jbInit(); } catch(Exception ex) { ex.printStackTrace(); } } void jbInit() throws Exception { jButton1.setFont(new java.awt.Font("Dialog", 0, 13)); jButton1.setText("排课"); this.getContentPane().setLayout(xYLayout1); this.setSize(new Dimension(400, 300)); this.setTitle("欢迎您进入排课界面"); this.getContentPane().add(jButton1, new XYConstraints(301, 236, -1, -1)); }}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -