You are on page 1of 1

Latihan 1

OBJEK PROPERTIES ISI PROPERTIES


JframeForm1 Title Form Latih 1
Jbutton1 Text Tombol Pertama
Jbutton2 Text Tombol Kedua
Jbutton3 Text Tombol Ketiga
Jbutton4 Text Normal
Jbutton5 Text Keluar
Jlabel1 Text Normal
Font
- Name Arial
- Size 36

KOMPONEN KODE
EVENT
jButton1 private void jButton1ActionPerformed(java.awt.event.ActionEvent evt) {
jLabel1.setText("Tombol Pertama");
}
jButton2 private void jButton2ActionPerformed(java.awt.event.ActionEvent evt) {
jLabel1.setText("Tombol Kedua");
}
jButton3 private void jButton3ActionPerformed(java.awt.event.ActionEvent evt) {
jLabel1.setText("Tombol Ketiga");
}
jButton4 private void jButton4ActionPerformed(java.awt.event.ActionEvent evt) {
jLabel1.setText("Tombol Normal");
}
jButton5 private void jButton5ActionPerformed(java.awt.event.ActionEvent evt) {
System.exit(0);
}

You might also like