TablePanel.java~87~
上传用户:liming9091
上传日期:2014-10-27
资源大小:3376k
文件大小:4k
源码类别:

Java编程

开发平台:

Java

  1. package manpowersystem;
  2. /**
  3.  * <p>Title: </p>
  4.  * <p>Description: </p>
  5.  * <p>Copyright: Copyright (c) 2003</p>
  6.  * <p>Company: </p>
  7.  * @author not attributable
  8.  * @version 1.0
  9.  */
  10. import java.io.*;
  11. import java.util.*;
  12. import java.awt.*;
  13. import java.awt.event.*;
  14. import javax.swing.*;
  15. import javax.swing.event.*;
  16. import javax.swing.border.*;
  17. import javax.swing.table.*;
  18. import com.borland.jbcl.layout.*;
  19. public class TablePanel extends JFrame {
  20.     Database database = new Database(); //数据库存取对象
  21.     RecordItem item = new RecordItem(); //每一条数据记录
  22.     Object[][] arrData = {};      //设定表格的字段
  23.     DefaultTableModel tableModel; //表格模型
  24.     int intRow;              //显示所选的行数
  25.     int intCol;              //显示所选的行数
  26.     boolean bCanDel = true;  //是否可以删除
  27.     int intEmploreeID;       //员工工号
  28.     String strName;          //员工姓名
  29.     Date dateTime;           //确切记录
  30.     String strDescribe;      //备注
  31.     JTable jRecordTable;
  32.     XYLayout xYLayout1 = new XYLayout();
  33.     JButton jAddRecordButton = new JButton();
  34.     JButton jDelRecordButton = new JButton();
  35.     JButton jExitButton = new JButton();
  36.     JScrollPane jTableScrollPane = new JScrollPane();
  37.     public TablePanel() {
  38.         try {
  39.             jbInit();
  40.         }
  41.         catch ( Exception e ) {
  42.             e.printStackTrace();
  43.         }
  44.     }
  45.     private void jbInit() throws Exception {
  46.         this.getContentPane().setBackground( new Color( 210, 138, 177 ) );
  47.         this.getContentPane().setLayout( xYLayout1 );
  48.         jAddRecordButton.setBackground( new Color( 212, 158, 217 ) );
  49.         jAddRecordButton.setFont( new java.awt.Font( "DialogInput", 1, 16 ) );
  50.         jAddRecordButton.setText( "添加记录" );
  51.         jAddRecordButton.addActionListener( new java.awt.event.ActionListener() {
  52.             public void actionPerformed( ActionEvent e ) {
  53.                 jAddRecordButton_actionPerformed( e );
  54.             }
  55.         } );
  56.         jDelRecordButton.setBackground( new Color( 212, 158, 217 ) );
  57.         jDelRecordButton.setFont( new java.awt.Font( "DialogInput", 1, 16 ) );
  58.         jDelRecordButton.setText( "删除记录" );
  59.         jDelRecordButton.addActionListener( new java.awt.event.ActionListener() {
  60.             public void actionPerformed( ActionEvent e ) {
  61.                 jDelRecordButton_actionPerformed( e );
  62.             }
  63.         } );
  64.         jExitButton.setBackground( new Color( 212, 158, 217 ) );
  65.         jExitButton.setFont( new java.awt.Font( "DialogInput", 1, 16 ) );
  66.         jExitButton.setText( "退出" );
  67.         jExitButton.addActionListener( new java.awt.event.ActionListener() {
  68.             public void actionPerformed( ActionEvent e ) {
  69.                 jExitButton_actionPerformed( e );
  70.             }
  71.         } );
  72.         addWindowListener( new WindowAdapter() {
  73.             public void windowClosing( WindowEvent e ) {
  74.                 dispose();
  75.             }
  76.         } );
  77.         jTableScrollPane.getViewport().setBackground( new Color( 210, 138, 177 ) );
  78.         this.getContentPane().add( jAddRecordButton,
  79.                                    new XYConstraints( 32, 448, 102, 52 ) );
  80.         this.getContentPane().add( jDelRecordButton,
  81.                                    new XYConstraints( 180, 447, 102, 52 ) );
  82.         this.getContentPane().add( jExitButton,
  83.                                    new XYConstraints( 329, 448, 102, 52 ) );
  84.         this.getContentPane().add( jTableScrollPane,
  85.                                    new XYConstraints( 3, 3, 458, 421 ) );
  86.         jTableScrollPane.getViewport().add( jRecordTable, null );
  87.         this.setSize( 470, 550 );
  88.         this.setLocation( 230, 100 );
  89.         this.setVisible(true);
  90.         this.setResizable( false );
  91.     }
  92.     void jExitButton_actionPerformed( ActionEvent e ) {
  93.         this.dispose();
  94.     }
  95.     void jAddRecordButton_actionPerformed( ActionEvent e ) {
  96.         AddRecord();
  97.     }
  98.     void jDelRecordButton_actionPerformed( ActionEvent e ) {
  99.         DelRecord();
  100.     }
  101.     public void AddRecord() {
  102.     }
  103.     public void DelRecord() {
  104.     }
  105.     public void UpdateRecord() {
  106.     }
  107. }