⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 borrowhistory.java~3~

📁 这是一个用JAVA编写的书籍借阅管理系统
💻 JAVA~3~
字号:
package bookmanager;import javax.swing.*;import com.borland.jbcl.layout.*;import java.awt.*;/** * <p>Title: </p> * <p>Description: </p> * <p>Copyright: Copyright (c) 2003</p> * <p>Company: </p> * @author not attributable * @version 1.0 */public class borrowHistory extends JFrame {  XYLayout xYLayout1 = new XYLayout();  JButton jButtonnext = new JButton();  JButton jButtonpre = new JButton();  JButton jButtonupdate = new JButton();  JButton jButtonlast = new JButton();  JButton jButtonexit = new JButton();  JButton jButtondelete = new JButton();  JButton jButtonfirst = new JButton();  public borrowHistory() {    try {      jbInit();    }    catch(Exception e) {      e.printStackTrace();    }  }  public static void main(String[] args) {    borrowHistory borrowHistory = new borrowHistory();  }  private void jbInit() throws Exception {    jButtonfirst.setFont(new java.awt.Font("Dialog", 0, 16));    jButtonfirst.addActionListener(new FrameProductInInformation_jButtonfirst_actionAdapter(this));    jButtonfirst.setText("first");    jButtondelete.addActionListener(new FrameProductInInformation_jButtondelete_actionAdapter(this));    jButtondelete.setText("delete");    jButtondelete.setFont(new java.awt.Font("Dialog", 0, 16));    jButtonexit.addActionListener(new FrameProductInInformation_jButtonexit_actionAdapter(this));    jButtonexit.setText("exit");    jButtonexit.setFont(new java.awt.Font("Dialog", 0, 16));    jButtonlast.setFont(new java.awt.Font("Dialog", 0, 16));    jButtonlast.addActionListener(new FrameProductInInformation_jButtonlast_actionAdapter(this));    jButtonlast.setText("last");    jButtonupdate.addActionListener(new FrameProductInInformation_jButtonupdate_actionAdapter(this));    jButtonupdate.setText("update");    jButtonupdate.setFont(new java.awt.Font("Dialog", 0, 16));    jButtonpre.addActionListener(new FrameProductInInformation_jButtonpre_actionAdapter(this));    jButtonpre.setText("pre");    jButtonpre.setFont(new java.awt.Font("Dialog", 0, 16));    jButtonnext.addActionListener(new FrameProductInInformation_jButtonnext_actionAdapter(this));    jButtonnext.setText("next");    jButtonnext.setFont(new java.awt.Font("Dialog", 0, 16));    this.getContentPane().setLayout(xYLayout1);    xYLayout1.setWidth(627);    xYLayout1.setHeight(442);    this.getContentPane().add(jButtonnext, new XYConstraints(185, 348, 89, 26));    this.getContentPane().add(jButtonpre, new XYConstraints(102, 347, 82, 26));    this.getContentPane().add(jButtonupdate, new XYConstraints(355, 349, 94, 27));    this.getContentPane().add(jButtonlast, new XYConstraints(274, 348, 81, 27));    this.getContentPane().add(jButtonexit, new XYConstraints(536, 347, 70, 28));    this.getContentPane().add(jButtondelete, new XYConstraints(449, 349, 86, 28));    this.getContentPane().add(jButtonfirst, new XYConstraints(15, 346, 86, 26));  }}

⌨️ 快捷键说明

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