paihb.java

来自「一个使用JB9编写的网络俄罗斯方块,大家可以下载如有不足还请原谅,有是可以给我E」· Java 代码 · 共 39 行

JAVA
39
字号
package 数据库;import javax.swing.*;import com.borland.dbswing.*;import java.awt.*;import com.borland.jbcl.layout.*;/** * <p>Title: </p> * <p>Description: </p> * <p>Copyright: Copyright (c) 2003</p> * <p>Company: </p> * @author not attributable * @version 1.0 */public class Paihb extends JFrame {  TableScrollPane tableScrollPane1 = new TableScrollPane();  XYLayout xYLayout1 = new XYLayout();  JdbTable jdbTable1 = new JdbTable();  public Paihb() {    try {      jbInit();    }    catch(Exception e) {      e.printStackTrace();    }  }  private void jbInit() throws Exception {    tableScrollPane1.setDebugGraphicsOptions(0);    this.getContentPane().setLayout(xYLayout1);    xYLayout1.setWidth(400);    xYLayout1.setHeight(415);    this.getContentPane().add(tableScrollPane1,  new XYConstraints(12, 12, 375, 386));    tableScrollPane1.getViewport().add(jdbTable1, null);  }}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?