-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtk_dene2.py
51 lines (32 loc) · 947 Bytes
/
tk_dene2.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
from tkinter import *
pencere = Tk()
pencere.title("Bahar")
pencere.geometry("550x350+350+50")
#Form elemanları Checkbutton (Onay Buton)
x = IntVar()
def kontrol():
if x.get() == 0:
etiket["text"] = "Seçilmedi"
else:
etiket["text"] = "Seçildi"
#Direkt seçili olarak getirir 1 degeri versek
x.set(0)
onay = Checkbutton(text= "Seç", variable = x, command = kontrol)
onay.pack()
etiket = Label()
etiket.pack()
x = StringVar()
x.set("")
def yazdir():
etiket["bg"] = x.get()
yazi = Label(text = "Hangi Dili öğrenmek istersin?")
yazi.pack()
kırmızı = Radiobutton(text = "Python",indicatoron = 1,variable = x,command=yazdir,value = "Red" )
kırmızı.pack()
yeşil = Radiobutton(text = "C",indicatoron = 0,variable = x,command=yazdir,value = "Green")
yeşil.pack()
mavi = Radiobutton(text = "Java",indicatoron = 0,variable = x,command=yazdir,value = "Blue")
mavi.pack()
etiket = Label()
etiket.pack()
mainloop()