📄 order.java~2~
字号:
package studentms;import javax.swing.*;import com.borland.jbcl.layout.*;import java.awt.*;public class display extends JFrame { XYLayout xYLayout1 = new XYLayout(); JLabel jLabel1 = new JLabel(); JList jList1 = new JList(); public display() { try { jbInit(); } catch(Exception e) { e.printStackTrace(); } } private void jbInit() throws Exception { jLabel1.setFont(new java.awt.Font("Dialog", 0, 12)); jLabel1.setText("查询结果:"); this.getContentPane().setLayout(xYLayout1); jList1.setFont(new java.awt.Font("Dialog", 0, 12)); jList1.setFixedCellWidth(-1); xYLayout1.setWidth(359); xYLayout1.setHeight(192); this.getContentPane().add(jLabel1, new XYConstraints(31, 20, 74, 20)); this.getContentPane().add(jList1, new XYConstraints(32, 49, 292, 115)); } void resultShow(){ }}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -