-
Notifications
You must be signed in to change notification settings - Fork 0
/
checkButton.py
41 lines (26 loc) · 943 Bytes
/
checkButton.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
from tkinter import *
root= Tk()
root.title("Ejemplo")
playa=IntVar()
montagna=IntVar()
turismoRural=IntVar()
def opcionesViaje():
opcionEscogida=""
if(playa.get()==1):
opcionEscogida=="playa"
if(montagna.get()==1):
opcionEscogida=="Montaña"
if(turismoRural.get()==1):
opcionEscogida=="Turismo Rural"
textoFinal.config(text=opcionEscogida)
foto= PhotoImage(file="mechero.gif")
Label(root,image=foto).pack()
frame=Frame(root)
frame.pack()
Label(frame, text="Elige detinos", width=50).pack()
Checkbutton(frame, text="Playa", variable=playa, onvalue=1, offvalue=0, command=opcionesViaje).pack()
Checkbutton(frame, text="Montaña", variable=montagna, onvalue=1, offvalue=0, command=opcionesViaje).pack()
Checkbutton(frame, text="Turismo rural", variable=turismoRural, onvalue=1, offvalue=0, command=opcionesViaje).pack()
textoFinal=Label(frame)
textoFinal.pack()
root.mainloop()