?? borrowhistory.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 + -