Cara membuat checkbox di Tkinter - suka code
Assalamualaikum wr wb, pada kali ini saya akan membagikan tutorial cara membuat checkbox dengan Tkinter. Apa sih itu checkbox ? dimana bisa membuat checkbox ? bagaimana caranya ? Mari kita simak bersama. Berikut penulisan kode nya :
Setelah itu, kita buat judul nya. Berikut penulisan kodenya :
self.parent.title = Untuk membuat judulnya
self.parent.geometry = Untuk membuat ukuran panjang dan lebar.
Lanjut kita buat checkbox nya. Contohnya seperti dibawah ini :
text = Untuk pilihan pada checkbox nya
Kode akhirnya seperti dibawah ini :
Untuk full source code nya seperti dibawah :
from tkinter import Tk, Frame, Checkbutton, BOTH
class Example(Frame):
def __init__(self, parent):
Frame.__init__(self, parent)
self.parent = parent
self.initUI()
self.buatCheckButton()
def initUI(self):
self.parent.title("Checkbutton")
self.pack(fill=BOTH, expand=True)
self.parent.geometry("250x230")
def buatCheckButton(self):
cb = Checkbutton(self, text="Admin 1")
cb.place(x=50, y=50)
cb = Checkbutton(self, text="Admin 2")
cb.place(x=50, y=70)
cb = Checkbutton(self, text="Admin 3")
cb.place(x=50, y=90)
cb = Checkbutton(self, text="Admin suka code")
cb.place(x=50, y=110)
if __name__ == '__main__':
root = Tk()
app = Example(root)
root.mainloop()
Hasil dari outputnya seperti berikut :
Belum ada Komentar untuk "Cara membuat checkbox di Tkinter - suka code"
Posting Komentar