Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- // paket yang diperlukan
- import javax.swing.*;
- import java.awt.event.ActionListener;
- import java.awt.event.ActionEvent;
- class KerjaCheckBox extends JFrame{
- // attribut
- //membuat tombol
- JButton tombol1 = new JButton("cek ?");
- JButton tombol2 = new JButton("set nilai true");
- JLabel label = new JLabel("nilai check box");
- // JCheckBox(String nama)
- JCheckBox cb = new JCheckBox("check boxnya");
- //konstruktor
- public KerjaCheckBox(){
- //frame seting---------------------------------------------------------------------
- //memanggil konstruktor kelas induk (JFrame)
- super("Contoh Checkbox");
- //seting besar frame 400 x 400 px
- this.setSize(200,200);
- //seting agar bisa ditutup
- this.setDefaultCloseOperation(EXIT_ON_CLOSE);
- //seting kemunculan frame di tengah window
- this.setLocationRelativeTo(null);
- //seting layout frame
- this.getContentPane().setLayout(null);
- //frame seting---------------------------------------------------------------------
- //menambahkan komponen ke frame dan seting letak
- this.add(tombol1);
- this.add(tombol2);
- this.add(label);
- this.add(cb);
- // setbounds(x,y,lebar,tinggi)
- tombol1.setBounds(10,10,150,25);
- tombol2.setBounds(10,40,150,25);
- label.setBounds(10,70,150,25);
- cb.setBounds(10,110,150,25);
- //seting aksi tombol
- tombol1.addActionListener(new ActionListener( ) {
- public void actionPerformed(ActionEvent e){
- // kode disini; cek keadaan check box
- if(cb.isSelected()) label.setText("CheckBox dicentang");
- else label.setText("CheckBox tidak dicentang");
- }
- });
- tombol2.addActionListener(new ActionListener( ) {
- public void actionPerformed(ActionEvent e){
- // kode disini; cek keadaan check box ganti keadaan chek box
- if(cb.isSelected()) cb.setSelected(false);
- else cb.setSelected(true);
- }
- });
- // menampilkan frame
- show();
- }
- public static void main(String[] args){
- new KerjaCheckBox();
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment