📄 cardquerypanel.java~1~
字号:
package bar;import java.awt.*;import javax.swing.*;import com.borland.dbswing.*;/** * <p>Title: </p> * <p>Description: </p> * <p>Copyright: Copyright (c) 2004</p> * <p>Company: </p> * @author not attributable * @version 1.0 */public class cardQueryPanel extends JPanel { BorderLayout borderLayout1 = new BorderLayout(); JSplitPane jSplitPane1 = new JSplitPane(); JPanel jPanel1 = new JPanel(); JScrollPane jScrollPane1 = new JScrollPane(); JLabel jLabel1 = new JLabel(); JLabel jLabel2 = new JLabel(); TableScrollPane tableScrollPane1 = new TableScrollPane(); JdbTable jdbTable1 = new JdbTable(); public cardQueryPanel() { try { jbInit(); } catch(Exception ex) { ex.printStackTrace(); } } void jbInit() throws Exception { this.setLayout(borderLayout1); jSplitPane1.setOrientation(JSplitPane.VERTICAL_SPLIT); jPanel1.setLayout(null); jLabel1.setFont(new java.awt.Font("Serif", 0, 16)); jLabel1.setText("卡号:"); jLabel1.setBounds(new Rectangle(86, 14, 73, 23)); jLabel2.setFont(new java.awt.Font("Serif", 0, 12)); jLabel2.setHorizontalAlignment(SwingConstants.CENTER); jLabel2.setText(""); jLabel2.setBounds(new Rectangle(152, 13, 119, 25)); this.add(jSplitPane1, BorderLayout.CENTER); jSplitPane1.add(jScrollPane1, JSplitPane.BOTTOM); jScrollPane1.getViewport().add(tableScrollPane1, null); tableScrollPane1.getViewport().add(jdbTable1, null); jSplitPane1.add(jPanel1, JSplitPane.TOP); jPanel1.add(jLabel2, null); jPanel1.add(jLabel1, null); jSplitPane1.setDividerLocation(50); }}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -