Rabu, 28 November 2012

Contoh Listing Sederhana Kombinasi Warna menggunakan aplikasi netbeans 7.0.1

package penggunaanawt;

import java.awt.*;
import java.awt.event.*;
public class AWTDemo extends Frame implements ActionListener{
    int x = 100;
    int y = 100;
public static void main(String[] args) {
    Frame frame = new AWTDemo();
    frame.setSize(640, 480);
    frame.setVisible(true);
}
public AWTDemo() {
setTitle("AWT Demo");
// create menu
    MenuBar mb = new MenuBar();
    setMenuBar(mb);
    Menu menu = new Menu("File");
    mb.add(menu);
    MenuItem mi = new MenuItem("Exit");
    mi.addActionListener(this);
    menu.add(mi);
// end program when window is closed
    WindowListener l = new WindowAdapter()  {
    public void windowClosing(WindowEvent ev) {
    System.exit(0);
    }
    };
this.addWindowListener(l);
// mouse event handler
MouseListener mouseListener = new MouseAdapter() {
public void mouseClicked(MouseEvent ev) {
    x = ev.getX();
    y = ev.getY();
    repaint();
}
};
addMouseListener(mouseListener);
}

public void paint(Graphics g) {

g.drawLine(580, 100 , 100, 100);
g.drawLine(100, 100 , 100, 350);
g.drawLine(400, 350, 400 , 100);
g.drawLine(100,350, 700 , 350);
g.drawLine(700, 250 , 700, 350);
g.drawLine(700, 250 , 640, 250);
g.drawLine(640, 250 , 580, 100);
g.setColor(Color.orange);
g.drawString("OPELET", 150,250);  
g.setColor(Color.red);
g.fillRect(150,150,50,50);
g.fillRect(450,150,50,50);
g.fillRect(270,150,50,50);
g.setColor(Color.blue);
g.fillOval(200,300,100,100);
g.fillOval(500,300,100,100);



}
public void actionPerformed(ActionEvent ev) {
String command = ev.getActionCommand();
if ("Exit".equals(command)) {
System.exit(0);
}
}
}

Berikut hasil outputnya :

Tidak ada komentar:

Posting Komentar