U E D R , A S I H C RSS

Convert App Into Applet/영동

~cpp 
import java.awt.*;
import java.awt.event.*;
import javax.swing.*;
public class AppletTest extends JApplet implements ActionListener {
	JButton 1, 2 ;
	Icon ;
	Font font;

	public void init() {

		1 = new JButton("1");
		1.addActionListener(this);
		2 = new JButton("2");
		2.addActionListener(this);

		 = new ImageIcon("aaa.jpg");

		JPanel panel = new JPanel();
		panel.add(1);
		panel.add(2);

		getContentPane().add(panel);
	}
	public void actionPerformed(ActionEvent ae) {
		if (ae.getSource() == 1) {
			JOptionPane.showMessageDialog(
				this,
				"1",
				"1택",
				JOptionPane.YES_NO_OPTION,
				);
		} else if (ae.getSource() == 2) {
			Object res =
				JOptionPane.showInputDialog(
					this,
					"2",
					"2택",
					JOptionPane.QUESTION_MESSAGE,
					,
					new Object[] { "2-1", "2-2", "2-3" },
					"2-1");
			JOptionPane.showMessageDialog(
				this,
				"택한 :  " + res,
				"",
				JOptionPane.INFORMATION_MESSAGE,
				);
		}
	}
}

Valid XHTML 1.0! Valid CSS! powered by MoniWiki
last modified 2021-02-07 05:23:00
Processing time 0.0068 sec