querrylist.java~2~

来自「俄罗斯方块游戏,大学时写的,支持单机及点对点网络对战!同时我还在里面加入了使用技」· JAVA~2~ 代码 · 共 38 行

JAVA~2~
38
字号
package ct;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 QuerryList extends JFrame {  XYLayout xYLayout1 = new XYLayout();  TableScrollPane tableScrollPane1 = new TableScrollPane();  JdbTable jdbTable1 = new JdbTable();  public QuerryList() {    try {      jbInit();    }    catch(Exception e) {      e.printStackTrace();    }  }  private void jbInit() throws Exception {    this.getContentPane().setLayout(xYLayout1);    xYLayout1.setWidth(400);    xYLayout1.setHeight(415);    this.getContentPane().add(tableScrollPane1, new XYConstraints(29, 31, 338, 353));    tableScrollPane1.getViewport().add(jdbTable1, null);  }}

⌨️ 快捷键说明

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