-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathInterfaceOnder.py
More file actions
24 lines (21 loc) · 1.08 KB
/
InterfaceOnder.py
File metadata and controls
24 lines (21 loc) · 1.08 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
label = tk.Label(text="Welkom bij de NS!", background='yellow', foreground='blue', width=50, height=3)
label.pack(side="top", fill="x", pady=10)
optie1 = tk.Button(text='Registreren', height=15, width=65, font=('Helvetica', 15, 'bold'),
background='royalblue',
foreground='white')
optie1.place(x=0, y=75)
optie2 = tk.Button(text='Stallen', height=15, width=65, font=('Helvetica', 15, 'bold'),
background='royalblue',
foreground='white',
highlightbackground="Black",
command=toonHome()
)
optie2.place(x=775, y=75)
optie3 = tk.Button(text='Ophalen', height=15, width=65, font=('Helvetica', 15, 'bold'),
background='royalblue',
foreground='white', highlightbackground="Black")
optie3.place(x=0, y=450)
optie4 = tk.Button(text='Informatie', height=15, width=65, font=('Helvetica', 15, 'bold'),
background='royalblue',
foreground='white', highlightbackground="Black")
optie4.place(x=775, y=450)