TablePanel.java~80~
上传用户: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.     Object[][] arrData = {};      //设定表格的字段
  21.     DefaultTableModel tableModel; //表格模型
  22.     int intDelLines;         //显示所选的行数
  23.     boolean bCanDel = true;  //是否可以删除
  24.     int intEmploreeID;       //员工工号
  25.     String strName;          //员工姓名
  26.     Date dateTime;           //确切记录
  27.     String strDescribe;      //备注
  28.     JTable jRecordTable;
  29.     XYLayout xYLayout1 = new XYLayout();
  30.     JButton jAddRecordButton = new JButton();
  31.     JButton jDelRecordButton = new JButton();
  32.     JButton jExitButton = new JButton();
  33.     JScrollPane jTableScrollPane = new JScrollPane();
  34.     public TablePanel() {
  35.         try {
  36.             jbInit();
  37.         }
  38.         catch ( Exception e ) {
  39.             e.printStackTrace();
  40.         }
  41.     }
  42.     public static void main( String[] args ) {
  43.         TablePanel tablePanel1 = new TablePanel();
  44.         //tablePanel1.setSize(600,400);
  45.         tablePanel1.validate();
  46.         tablePanel1.setVisible( true );
  47.     }
  48.     private void jbInit() throws Exception {
  49.         this.getContentPane().setBackground( new Color( 210, 138, 177 ) );
  50.         this.getContentPane().setLayout( xYLayout1 );
  51.         jAddRecordButton.setBackground( new Color( 212, 158, 217 ) );
  52.         jAddRecordButton.setFont( new java.awt.Font( "DialogInput", 1, 16 ) );
  53.         jAddRecordButton.setText( "添加记录" );
  54.         jAddRecordButton.addActionListener( new java.awt.event.ActionListener() {
  55.             public void actionPerformed( ActionEvent e ) {
  56.                 jAddRecordButton_actionPerformed( e );
  57.             }
  58.         } );
  59.         jDelRecordButton.setBackground( new Color( 212, 158, 217 ) );
  60.         jDelRecordButton.setFont( new java.awt.Font( "DialogInput", 1, 16 ) );
  61.         jDelRecordButton.setText( "删除记录" );
  62.         jDelRecordButton.addActionListener( new java.awt.event.ActionListener() {
  63.             public void actionPerformed( ActionEvent e ) {
  64.                 jDelRecordButton_actionPerformed( e );
  65.             }
  66.         } );
  67.         jExitButton.setBackground( new Color( 212, 158, 217 ) );
  68.         jExitButton.setFont( new java.awt.Font( "DialogInput", 1, 16 ) );
  69.         jExitButton.setText( "退出" );
  70.         jExitButton.addActionListener( new java.awt.event.ActionListener() {
  71.             public void actionPerformed( ActionEvent e ) {
  72.                 jExitButton_actionPerformed( e );
  73.             }
  74.         } );
  75.         addWindowListener( new WindowAdapter() {
  76.             public void windowClosing( WindowEvent e ) {
  77.                 dispose();
  78.             }
  79.         } );
  80.         jTableScrollPane.getViewport().setBackground( new Color( 210, 138, 177 ) );
  81.         this.getContentPane().add( jAddRecordButton,
  82.                                    new XYConstraints( 32, 448, 102, 52 ) );
  83.         this.getContentPane().add( jDelRecordButton,
  84.                                    new XYConstraints( 180, 447, 102, 52 ) );
  85.         this.getContentPane().add( jExitButton,
  86.                                    new XYConstraints( 329, 448, 102, 52 ) );
  87.         this.getContentPane().add( jTableScrollPane,
  88.                                    new XYConstraints( 3, 3, 458, 421 ) );
  89.         jTableScrollPane.getViewport().add( jRecordTable, null );
  90.         this.setSize( 470, 550 );
  91.         this.setLocation( 230, 100 );
  92.         this.setVisible(true);
  93.         this.setResizable( false );
  94.     }
  95.     void jExitButton_actionPerformed( ActionEvent e ) {
  96.         this.dispose();
  97.     }
  98.     void jAddRecordButton_actionPerformed( ActionEvent e ) {
  99.         AddRecord();
  100.     }
  101.     void jDelRecordButton_actionPerformed( ActionEvent e ) {
  102.         DelRecord();
  103.     }
  104.     public void AddRecord() {
  105.     }
  106.     public void DelRecord() {
  107.     }
  108.     public void UpdateRecord() {
  109.     }
  110. }