SlideShare une entreprise Scribd logo
1  sur  10
Télécharger pour lire hors ligne
บทที่ 7 การใช้ GUI และ Action Listenner

การทดลองที่ 7-1
/* Lab7_1new.java */

import java.awt.*;
import java.awt.event.*;
import javax.swing.*;

public class Lab7_1new extends JApplet {
   JLabel numberLabel;
   JTextField numberField;
   JTextArea resultArea;

    public void init() {
       // obtain content pane and set its layout to FlowLayout
       Container container = getContentPane();
       container.setLayout( new FlowLayout() );
       // create numberLabel and attach it to content pane
       numberLabel = new JLabel( "Enter an integer and press Enter" );
       container.add( numberLabel );

        // create numberField and attach it to content pane
        numberField = new JTextField( 10 );
        container.add( numberField );

        // register this applet as numberField’s ActionListener
        numberField.addActionListener(
           new ActionListener() {
              public void actionPerformed( ActionEvent event )
              {
                 int number;
                 String blank5 = "     ";
                 number = Integer.parseInt( numberField.getText() );
                 // clear value in TextArea
                 resultArea.setText("");
                 // add data in textarea
                 for (int n = 1 ; n <= number ; n++) {
                    resultArea.append( blank5 + Integer.toString(n) );
                    if (n % 5 == 0) resultArea.append("n");
                 }
                 // clear value in numberField
                 numberField.setText("");
              } // end method actionPerformed
           }
        );

        // create display
        resultArea = new JTextArea( 10,20 );
        resultArea.setEditable( false );
        container.add( resultArea );
    }
}


662305 Information Technology Laboratory II- Chapter 7                 หน ้า 1 จาก 10
ไฟล์ Lab7_1new.html
<HTML>
<HEAD>
   <TITLE>Example 7_1 </TITLE>
</HEAD>
<BODY>
<H3><HR WIDTH="100%">Example Lab7_1new <HR WIDTH="100%"></H3>
<P>
<APPLET code="Lab7_1new.class" width=400 height=400></APPLET>
</P>
<HR WIDTH="100%">
</BODY>
</HTML>


ผลลัพธ์




       ให้นกศึกษาแก้ไขโดยการเพิ่ม JTextField ในการรับค่าสําหรับการกําหนดช่องว่าง และส่วนการแสดงผล
           ั
ของ JTextArea ให้ควบคุมด้วย JScrollPaneโดยเม่ือมีขอมลเกินก็จะแสดง scroll bar ขึ้นมาดังรู ป
                                                  ้ ู




662305 Information Technology Laboratory II- Chapter 7                            หน ้า 2 จาก 10
การทดลองที่ 7-2
/*   Lab7_2new.java */

import java.awt.*;
import java.awt.event.*;
import javax.swing.*;

public class Lab7_2new extends JApplet implements ActionListener {
   JLabel salaryLabel, taxLabel, resultLabel;
   JTextField salaryField, taxField,resultField;
   JButton btnCalculate;

     public void init()
     {
        // obtain content pane and set its layout to FlowLayout
        Container container = getContentPane();
        container.setLayout( new FlowLayout() );

         // create numberLabel and attach it to content pane
         salaryLabel = new JLabel( "Enter salary employee : " );
         container.add( salaryLabel );
         salaryField = new JTextField( 10 );
         container.add( salaryField );
         taxLabel = new JLabel(    "   Result Tax of salary : " );
         container.add( taxLabel );
         taxField = new JTextField( 10 );
         taxField.setEditable( false );
         container.add( taxField );
         resultLabel = new JLabel( "       Result Net Salary : " );
         container.add( resultLabel );
         resultField = new JTextField( 10 );
         resultField.setEditable( false );
         container.add( resultField );

         btnCalculate = new JButton(" Calculate          ");
         btnCalculate.addActionListener( this);
         container.add( btnCalculate );
     }

     public void actionPerformed( ActionEvent event )
     {
        double salary = Double.parseDouble( salaryField.getText() ) ;
        double tax, netSalary, taxRate;

        if (salary < 20000) taxRate = 0.02;
        else if (salary < 50000) taxRate = 0.05;
        else if (salary < 100000) taxRate = 0.07;
        else if (salary < 500000) taxRate = 0.10;
        else taxRate = 0.15;
        tax = salary * taxRate;
        netSalary = salary - tax;
        taxField.setText( Double.toString( tax) ) ;
        resultField.setText( Double.toString( netSalary ) );
     } // end method actionPerformed
}
662305 Information Technology Laboratory II- Chapter 7         หน ้า 3 จาก 10
ไฟล์ Lab7_2new.html
<HTML>
<HEAD>
   <TITLE>Example 7_2 </TITLE>
</HEAD>
<BODY>
<H3><HR WIDTH="100%">Example Lab7_2new <HR WIDTH="100%"></H3>
<P>
<APPLET code="Lab7_2new.class" width=300 height=400></APPLET>
</P>
<HR WIDTH="100%">
</BODY>
</HTML>



ผลลัพธ์




         ให้นกศึกษาปรับแก้ไขส่วนการคานวณภาษี ให้เป็ นการเรี ยกใช้ method ชื่อ getTax แทน โดยรับค่า
             ั                          ํ
เงินเดือนและส่งคืนค่าภาษีกลบท่ีช่ือ method โดยการทํางานยังถูกต้องเหมือนเดิม
                           ั




662305 Information Technology Laboratory II- Chapter 7                             หน ้า 4 จาก 10
การทดลองที่ 7-3
/* Lab7_3.java */

import java.awt.*;
import java.awt.event.*;
import javax.swing.*;

public class Lab7_3new extends JApplet implements ActionListener
{
     JLabel numberLabel;
     JTextField numberField;
     JButton btn1, btn2, btn3;

      public void init() {
          // obtain content pane and set its layout to FlowLayout
          Container container = getContentPane();
          container.setLayout( new FlowLayout() );

               // create numberLabel and attach it to content pane
               numberLabel = new JLabel( "Show Number : " );
               container.add( numberLabel );
               numberField = new JTextField( 10 );
               //numberField.setEditable( false );
               container.add( numberField );

               btn1 = new JButton(" 1 ");
               btn1.addActionListener( this);
               container.add( btn1 );
               btn2 = new JButton(" 2 ");
               btn2.addActionListener( this);
               container.add( btn2 );
               btn3 = new JButton(" 3 ");
               btn3.addActionListener( this);
               container.add( btn3 );
       }

       public void actionPerformed( ActionEvent event )
       {
            String str = numberField.getText();

            if (event.getSource() == btn1) {
                 str += "1";
                 numberField.setText( str );
            }
            else if (event.getSource() == btn2) {
                 str += "2";
                 numberField.setText( str );
            }
            else if (event.getSource() == btn3) {
                 str += "3";
                 numberField.setText( str );
            }
       } // end method actionPerformed
 }
662305 Information Technology Laboratory II- Chapter 7       หน ้า 5 จาก 10
ไฟล์ Lab7_3new.html
<HTML>
<HEAD>
   <TITLE>Example 7_3 </TITLE>
</HEAD>
<BODY>
<H3><HR WIDTH="100%">Example Lab7_3new <HR WIDTH="100%"></H3>
<P>
<APPLET code="Lab7_3new.class" width=250 height=200></APPLET>
</P>
<HR WIDTH="100%">
</BODY>
</HTML>



ผลลัพธ์




        ให้นกศึกษาปรับหน้าจอให้มีรายละเอียดตามภาพด้านล่าง โดยให้ทุกปุ่ มสามารถคลิกและเพิมข้อความใน
              ั                                                                         ่
TextField ได้




662305 Information Technology Laboratory II- Chapter 7                             หน ้า 6 จาก 10
การทดลองที่ 7-4
/* Lab7_4.java */
import java.awt.*;
import java.awt.event.*;
import javax.swing.*;

public class Lab7_4 extends JApplet implements ActionListener {
   JLabel textLabel, xLabel, yLabel;
   JTextField textField, xField, yField;
   JButton btn;
   int X = 0, Y = 0;
   String str="";

     public void init() {
         // obtain content pane and set its layout to FlowLayout
         Container container = getContentPane();
         container.setLayout( new FlowLayout() );

         // create textLabel and textField attach it to content pane
         textLabel = new JLabel( "Enter Text : " );
         container.add( textLabel );
         textField = new JTextField( 10 );
         container.add( textField );

         // create xLabel and xField attach it to content pane
         xLabel = new JLabel( "Position X : " );
         container.add( xLabel );
         xField = new JTextField( 10 );
         container.add( xField );

         // create yLabel and yField attach it to content pane
         yLabel = new JLabel( "Position Y : " );
         container.add( yLabel );
         yField = new JTextField( 10 );
         container.add( yField );

         btn = new JButton(" SHOW ");
         btn.addActionListener( this);
         container.add( btn );
    }

    public void actionPerformed( ActionEvent event )
    {
       str = textField.getText();
       X = Integer.parseInt( xField.getText() );
       Y = Integer.parseInt( yField.getText() );
       repaint();   // for call paint()
    } // end method actionPerformed

    public void paint(Graphics g)
    {
       super.paint(g);
       g.drawString( str, X, Y );
    }
}


662305 Information Technology Laboratory II- Chapter 7       หน ้า 7 จาก 10
ผลลัพธ์




การทดลองที่ 7-5
/* Lab7_5.java */

import java.awt.*;
import java.awt.event.*;
import javax.swing.*;

public class Lab7_5 extends JApplet implements ActionListener {
   JLabel idLabel, nameLabel, scoreLabel;
   JTextField idField, nameField, scoreField, statusField;
   JButton addBtn, minBtn, maxBtn, avgBtn;
   JTextArea showData;

    String [] id, name = new String[20];
    double score[] = new double[20];

      public void init() {
          // obtain content pane and set its layout to FlowLayout
          Container container = getContentPane();
          container.setLayout( new FlowLayout() );

          // create idLabel and idField attach it to content pane
          idLabel = new JLabel( "         Enter Student Id : " );
          container.add( idLabel );
          idField = new JTextField( 15 );
          container.add( idField );

          // create nameLabel and nameField attach it to content pane
          nameLabel = new JLabel( "Enter Student Name : " );
          container.add( nameLabel );
          nameField = new JTextField( 15 );
662305 Information Technology Laboratory II- Chapter 7      หน ้า 8 จาก 10
container.add( nameField );

         // create scoreLabel and scoreField attach it to content pane
         scoreLabel = new JLabel( "Enter Student Score : " );
         container.add( scoreLabel );
         scoreField = new JTextField( 15 );
         container.add( scoreField );
         // create buton attach it to content pane
         addBtn = new JButton("Add");
         addBtn.addActionListener( this);
         container.add( addBtn );
         String blank = "";
         for(int n = 1 ; n <= 80 ; n++) blank += " ";
         container.add( new JLabel( blank ) );
         // create jtextarea attach it to content pane
         showData = new JTextArea( 10, 26 );
         container.add( showData );
         container.add( new JLabel( blank ) );
         // create buton attach it to content pane
         minBtn = new JButton("Minimum");
         addBtn.addActionListener( this);
         container.add( minBtn );
         // create buton attach it to content pane
         maxBtn = new JButton("Maximum");
         maxBtn.addActionListener( this);
         container.add( maxBtn );
         // create buton attach it to content pane
         avgBtn = new JButton("Average");
         avgBtn.addActionListener( this);
         container.add( avgBtn );
         // create field attach it to content pane
         statusField = new JTextField( 26 );
         container.add( statusField );
    }

    public void actionPerformed( ActionEvent event )
    {
       if (event.getSource() == addBtn)
       {
           addData();
       }
       else if (event.getSource() == minBtn)
       {
           minData();
       }
       else if (event.getSource() == maxBtn)
       {
           maxData();
       }
       else if (event.getSource() == avgBtn)
       {
           averageData();
       }
    } // end method actionPerformed

662305 Information Technology Laboratory II- Chapter 7       หน ้า 9 จาก 10
public void paint(Graphics g)
    {
       super.paint(g);
       g.drawRect( 5, 3, 320, 110 );
       g.drawRect( 5, 120, 320, 195 );
    }

    public void addData()
    {
    }

    public void minData()
    {
    }

    public void maxData()
    {
    }

    public void averageData()
    {
    }
}

ผลลัพธ์




662305 Information Technology Laboratory II- Chapter 7   หน ้า 10 จาก 10

Contenu connexe

En vedette (14)

Array
ArrayArray
Array
 
New Assingment3 array2D
New Assingment3 array2DNew Assingment3 array2D
New Assingment3 array2D
 
Applet 7 image_j_panel
Applet 7 image_j_panelApplet 7 image_j_panel
Applet 7 image_j_panel
 
Applet 6 mouse_keyboard
Applet 6 mouse_keyboardApplet 6 mouse_keyboard
Applet 6 mouse_keyboard
 
Applet 5 class_inheritance
Applet 5 class_inheritanceApplet 5 class_inheritance
Applet 5 class_inheritance
 
662305 LAB13
662305 LAB13662305 LAB13
662305 LAB13
 
Method part2
Method part2Method part2
Method part2
 
Lab 6 new
Lab 6 newLab 6 new
Lab 6 new
 
Applet 7 image_j_panel
Applet 7 image_j_panelApplet 7 image_j_panel
Applet 7 image_j_panel
 
Applet 5 class_inheritance
Applet 5 class_inheritanceApplet 5 class_inheritance
Applet 5 class_inheritance
 
Applet 4 class_composition
Applet 4 class_compositionApplet 4 class_composition
Applet 4 class_composition
 
Putty basic setting
Putty basic settingPutty basic setting
Putty basic setting
 
Agile Secure Cloud Application Development Management
Agile Secure Cloud Application Development ManagementAgile Secure Cloud Application Development Management
Agile Secure Cloud Application Development Management
 
Applet 3 design_class_composition
Applet 3 design_class_compositionApplet 3 design_class_composition
Applet 3 design_class_composition
 

Plus de Nitigan Nakjuatong (7)

วิธีการกำหนดสิทธิให้กับ Directory
วิธีการกำหนดสิทธิให้กับ Directoryวิธีการกำหนดสิทธิให้กับ Directory
วิธีการกำหนดสิทธิให้กับ Directory
 
662305 LAB12
662305 LAB12662305 LAB12
662305 LAB12
 
662305 11
662305 11662305 11
662305 11
 
662305 10
662305 10662305 10
662305 10
 
662305 09
662305 09662305 09
662305 09
 
Control structure
Control structureControl structure
Control structure
 
Set putty to use numeric keyboard in pico
Set putty to use numeric keyboard in picoSet putty to use numeric keyboard in pico
Set putty to use numeric keyboard in pico
 

662305 Lab7new

  • 1. บทที่ 7 การใช้ GUI และ Action Listenner การทดลองที่ 7-1 /* Lab7_1new.java */ import java.awt.*; import java.awt.event.*; import javax.swing.*; public class Lab7_1new extends JApplet { JLabel numberLabel; JTextField numberField; JTextArea resultArea; public void init() { // obtain content pane and set its layout to FlowLayout Container container = getContentPane(); container.setLayout( new FlowLayout() ); // create numberLabel and attach it to content pane numberLabel = new JLabel( "Enter an integer and press Enter" ); container.add( numberLabel ); // create numberField and attach it to content pane numberField = new JTextField( 10 ); container.add( numberField ); // register this applet as numberField’s ActionListener numberField.addActionListener( new ActionListener() { public void actionPerformed( ActionEvent event ) { int number; String blank5 = " "; number = Integer.parseInt( numberField.getText() ); // clear value in TextArea resultArea.setText(""); // add data in textarea for (int n = 1 ; n <= number ; n++) { resultArea.append( blank5 + Integer.toString(n) ); if (n % 5 == 0) resultArea.append("n"); } // clear value in numberField numberField.setText(""); } // end method actionPerformed } ); // create display resultArea = new JTextArea( 10,20 ); resultArea.setEditable( false ); container.add( resultArea ); } } 662305 Information Technology Laboratory II- Chapter 7 หน ้า 1 จาก 10
  • 2. ไฟล์ Lab7_1new.html <HTML> <HEAD> <TITLE>Example 7_1 </TITLE> </HEAD> <BODY> <H3><HR WIDTH="100%">Example Lab7_1new <HR WIDTH="100%"></H3> <P> <APPLET code="Lab7_1new.class" width=400 height=400></APPLET> </P> <HR WIDTH="100%"> </BODY> </HTML> ผลลัพธ์ ให้นกศึกษาแก้ไขโดยการเพิ่ม JTextField ในการรับค่าสําหรับการกําหนดช่องว่าง และส่วนการแสดงผล ั ของ JTextArea ให้ควบคุมด้วย JScrollPaneโดยเม่ือมีขอมลเกินก็จะแสดง scroll bar ขึ้นมาดังรู ป ้ ู 662305 Information Technology Laboratory II- Chapter 7 หน ้า 2 จาก 10
  • 3. การทดลองที่ 7-2 /* Lab7_2new.java */ import java.awt.*; import java.awt.event.*; import javax.swing.*; public class Lab7_2new extends JApplet implements ActionListener { JLabel salaryLabel, taxLabel, resultLabel; JTextField salaryField, taxField,resultField; JButton btnCalculate; public void init() { // obtain content pane and set its layout to FlowLayout Container container = getContentPane(); container.setLayout( new FlowLayout() ); // create numberLabel and attach it to content pane salaryLabel = new JLabel( "Enter salary employee : " ); container.add( salaryLabel ); salaryField = new JTextField( 10 ); container.add( salaryField ); taxLabel = new JLabel( " Result Tax of salary : " ); container.add( taxLabel ); taxField = new JTextField( 10 ); taxField.setEditable( false ); container.add( taxField ); resultLabel = new JLabel( " Result Net Salary : " ); container.add( resultLabel ); resultField = new JTextField( 10 ); resultField.setEditable( false ); container.add( resultField ); btnCalculate = new JButton(" Calculate "); btnCalculate.addActionListener( this); container.add( btnCalculate ); } public void actionPerformed( ActionEvent event ) { double salary = Double.parseDouble( salaryField.getText() ) ; double tax, netSalary, taxRate; if (salary < 20000) taxRate = 0.02; else if (salary < 50000) taxRate = 0.05; else if (salary < 100000) taxRate = 0.07; else if (salary < 500000) taxRate = 0.10; else taxRate = 0.15; tax = salary * taxRate; netSalary = salary - tax; taxField.setText( Double.toString( tax) ) ; resultField.setText( Double.toString( netSalary ) ); } // end method actionPerformed } 662305 Information Technology Laboratory II- Chapter 7 หน ้า 3 จาก 10
  • 4. ไฟล์ Lab7_2new.html <HTML> <HEAD> <TITLE>Example 7_2 </TITLE> </HEAD> <BODY> <H3><HR WIDTH="100%">Example Lab7_2new <HR WIDTH="100%"></H3> <P> <APPLET code="Lab7_2new.class" width=300 height=400></APPLET> </P> <HR WIDTH="100%"> </BODY> </HTML> ผลลัพธ์ ให้นกศึกษาปรับแก้ไขส่วนการคานวณภาษี ให้เป็ นการเรี ยกใช้ method ชื่อ getTax แทน โดยรับค่า ั ํ เงินเดือนและส่งคืนค่าภาษีกลบท่ีช่ือ method โดยการทํางานยังถูกต้องเหมือนเดิม ั 662305 Information Technology Laboratory II- Chapter 7 หน ้า 4 จาก 10
  • 5. การทดลองที่ 7-3 /* Lab7_3.java */ import java.awt.*; import java.awt.event.*; import javax.swing.*; public class Lab7_3new extends JApplet implements ActionListener { JLabel numberLabel; JTextField numberField; JButton btn1, btn2, btn3; public void init() { // obtain content pane and set its layout to FlowLayout Container container = getContentPane(); container.setLayout( new FlowLayout() ); // create numberLabel and attach it to content pane numberLabel = new JLabel( "Show Number : " ); container.add( numberLabel ); numberField = new JTextField( 10 ); //numberField.setEditable( false ); container.add( numberField ); btn1 = new JButton(" 1 "); btn1.addActionListener( this); container.add( btn1 ); btn2 = new JButton(" 2 "); btn2.addActionListener( this); container.add( btn2 ); btn3 = new JButton(" 3 "); btn3.addActionListener( this); container.add( btn3 ); } public void actionPerformed( ActionEvent event ) { String str = numberField.getText(); if (event.getSource() == btn1) { str += "1"; numberField.setText( str ); } else if (event.getSource() == btn2) { str += "2"; numberField.setText( str ); } else if (event.getSource() == btn3) { str += "3"; numberField.setText( str ); } } // end method actionPerformed } 662305 Information Technology Laboratory II- Chapter 7 หน ้า 5 จาก 10
  • 6. ไฟล์ Lab7_3new.html <HTML> <HEAD> <TITLE>Example 7_3 </TITLE> </HEAD> <BODY> <H3><HR WIDTH="100%">Example Lab7_3new <HR WIDTH="100%"></H3> <P> <APPLET code="Lab7_3new.class" width=250 height=200></APPLET> </P> <HR WIDTH="100%"> </BODY> </HTML> ผลลัพธ์ ให้นกศึกษาปรับหน้าจอให้มีรายละเอียดตามภาพด้านล่าง โดยให้ทุกปุ่ มสามารถคลิกและเพิมข้อความใน ั ่ TextField ได้ 662305 Information Technology Laboratory II- Chapter 7 หน ้า 6 จาก 10
  • 7. การทดลองที่ 7-4 /* Lab7_4.java */ import java.awt.*; import java.awt.event.*; import javax.swing.*; public class Lab7_4 extends JApplet implements ActionListener { JLabel textLabel, xLabel, yLabel; JTextField textField, xField, yField; JButton btn; int X = 0, Y = 0; String str=""; public void init() { // obtain content pane and set its layout to FlowLayout Container container = getContentPane(); container.setLayout( new FlowLayout() ); // create textLabel and textField attach it to content pane textLabel = new JLabel( "Enter Text : " ); container.add( textLabel ); textField = new JTextField( 10 ); container.add( textField ); // create xLabel and xField attach it to content pane xLabel = new JLabel( "Position X : " ); container.add( xLabel ); xField = new JTextField( 10 ); container.add( xField ); // create yLabel and yField attach it to content pane yLabel = new JLabel( "Position Y : " ); container.add( yLabel ); yField = new JTextField( 10 ); container.add( yField ); btn = new JButton(" SHOW "); btn.addActionListener( this); container.add( btn ); } public void actionPerformed( ActionEvent event ) { str = textField.getText(); X = Integer.parseInt( xField.getText() ); Y = Integer.parseInt( yField.getText() ); repaint(); // for call paint() } // end method actionPerformed public void paint(Graphics g) { super.paint(g); g.drawString( str, X, Y ); } } 662305 Information Technology Laboratory II- Chapter 7 หน ้า 7 จาก 10
  • 8. ผลลัพธ์ การทดลองที่ 7-5 /* Lab7_5.java */ import java.awt.*; import java.awt.event.*; import javax.swing.*; public class Lab7_5 extends JApplet implements ActionListener { JLabel idLabel, nameLabel, scoreLabel; JTextField idField, nameField, scoreField, statusField; JButton addBtn, minBtn, maxBtn, avgBtn; JTextArea showData; String [] id, name = new String[20]; double score[] = new double[20]; public void init() { // obtain content pane and set its layout to FlowLayout Container container = getContentPane(); container.setLayout( new FlowLayout() ); // create idLabel and idField attach it to content pane idLabel = new JLabel( " Enter Student Id : " ); container.add( idLabel ); idField = new JTextField( 15 ); container.add( idField ); // create nameLabel and nameField attach it to content pane nameLabel = new JLabel( "Enter Student Name : " ); container.add( nameLabel ); nameField = new JTextField( 15 ); 662305 Information Technology Laboratory II- Chapter 7 หน ้า 8 จาก 10
  • 9. container.add( nameField ); // create scoreLabel and scoreField attach it to content pane scoreLabel = new JLabel( "Enter Student Score : " ); container.add( scoreLabel ); scoreField = new JTextField( 15 ); container.add( scoreField ); // create buton attach it to content pane addBtn = new JButton("Add"); addBtn.addActionListener( this); container.add( addBtn ); String blank = ""; for(int n = 1 ; n <= 80 ; n++) blank += " "; container.add( new JLabel( blank ) ); // create jtextarea attach it to content pane showData = new JTextArea( 10, 26 ); container.add( showData ); container.add( new JLabel( blank ) ); // create buton attach it to content pane minBtn = new JButton("Minimum"); addBtn.addActionListener( this); container.add( minBtn ); // create buton attach it to content pane maxBtn = new JButton("Maximum"); maxBtn.addActionListener( this); container.add( maxBtn ); // create buton attach it to content pane avgBtn = new JButton("Average"); avgBtn.addActionListener( this); container.add( avgBtn ); // create field attach it to content pane statusField = new JTextField( 26 ); container.add( statusField ); } public void actionPerformed( ActionEvent event ) { if (event.getSource() == addBtn) { addData(); } else if (event.getSource() == minBtn) { minData(); } else if (event.getSource() == maxBtn) { maxData(); } else if (event.getSource() == avgBtn) { averageData(); } } // end method actionPerformed 662305 Information Technology Laboratory II- Chapter 7 หน ้า 9 จาก 10
  • 10. public void paint(Graphics g) { super.paint(g); g.drawRect( 5, 3, 320, 110 ); g.drawRect( 5, 120, 320, 195 ); } public void addData() { } public void minData() { } public void maxData() { } public void averageData() { } } ผลลัพธ์ 662305 Information Technology Laboratory II- Chapter 7 หน ้า 10 จาก 10