Java Applet Checkbox Örneği

 

import java.applet.Applet;
import java.awt.Checkbox;
import java.awt.Label;
import java.awt.Button;
import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;

public class CheckboxEkleme extends Applet implements ActionListener{

    Label Baslik=new Label("Lütfen favori işletim sisteminizi seçiniz");
    Checkbox WinXp=new Checkbox("Windows Xp", null, false);
    Checkbox Vista=new Checkbox("Windows Vista", null, false);
    Checkbox Win7=new Checkbox("Windows Seven", null, false);
    Checkbox Linux=new Checkbox("Linux", null, false);

    Button Sonuc=new Button("Tamam");
    Button Yeniden=new Button("YenidAen");
   
    Label AltMesaj=new Label();

    int Puan =0;
   
    public void init() {

        setLayout(null);

        add(WinXp);
        add(Vista);
        add(Win7);
        add(Linux);
        add(Baslik);
        add(Sonuc);
        add(AltMesaj);
        add(Yeniden);

        Sonuc.addActionListener(this);
        Yeniden.addActionListener(this);

        WinXp.setLocation(10, 30);
        WinXp.setSize(100, 30);

        Vista.setLocation(10, 60);
        Vista.setSize(100, 30);

        Win7.setLocation(10, 90);
        Win7.setSize(100, 30);

        Linux.setLocation(10, 120);
        Linux.setSize(100, 30);

        Baslik.setLocation(10, 5);
        Baslik.setSize(200, 30);

        Sonuc.setLocation(10, 160);
        Sonuc.setSize(50, 30);

        Yeniden.setLocation(60, 160);
        Yeniden.setSize(70, 30);

        AltMesaj.setLocation(10, 180);
        AltMesaj.setSize(250, 30);

    }

    public void actionPerformed(ActionEvent Olay){

        if(Olay.getSource()==Sonuc){

            if(WinXp.getState()) Puan+=5;
            if(Vista.getState()) Puan+=10;
            if(Win7.getState()) Puan+=20;
            if(Linux.getState()) Puan+=50;

            AltMesaj.setText("Değerlendirme sonucunuz :" + Puan);

        }

        if(Olay.getSource()==Yeniden){
            WinXp.setState(false);
            Vista.setState(false);
            Win7.setState(false);
            Linux.setState(false);
            AltMesaj.setText("");
            Puan=0;
        }
       
    }
}
 

Java Applet Checkbox ÖrneğiJava Applet Checkbox Örneği

Yorumunuzu Ekleyin


Yükleniyor...
Yükleniyor...