JApplet
class in Applet
As we prefer Swing to AWT. Now we can use JApplet that can
have all
the controls of swing. The JApplet class extends
the Applet class.
JApplet
class in Applet
Fig: JApplet In Applet |
Example of EventHandling in JApplet:
import java.applet.*;
import javax.swing.*;
import java.awt.event.*;
public class EventJApplet extends JApplet implements ActionListener{
JButton b;
JTextField tf;
public void init(){
t f=new JTextField();
t f.setBounds(30,40,150,20);
b=new JButton("Click");
b.setBounds(80,150,70,40);
add(b);add(tf);
b.addActionListener(this);
setLayout(null);
}
public void actionPerformed(ActionEvent e){
t f.setText("Welcome");
}
myapplet.html
<html>
<body>
<applet code="EventJApplet.class" width="300" height="300">
</applet>
</body>
</html>
No comments:
Post a Comment