📄 shanchukaoshi.java~1~
字号:
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 shanChuKaoShi extends JFrame { JList jList1 = new JList(); XYLayout xYLayout1 = new XYLayout(); JList jList2 = new JList(); public shanChuKaoShi() { try { jbInit(); } catch(Exception ex) { ex.printStackTrace(); } } void jbInit() throws Exception { this.setSize(new Dimension(400, 300)); this.getContentPane().setLayout(xYLayout1); this.getContentPane().add(jList1, new XYConstraints(0, 0, 400, -1)); this.getContentPane().add(jList2, new XYConstraints(-3, 68, 403, 144)); }}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -