summaryrefslogtreecommitdiff
path: root/gui.py
blob: 04250f13491ea761f93b6b8c8461ee6436f511ec (plain)
1
2
3
4
5
6
7
8
9
10
11
12
from tkinter import ttk  # Normal Tkinter.* widgets are not themed!
from ttkthemes import ThemedTk

window = ThemedTk(theme="equilux")
frame1 = ttk.Frame(window)
but1 = ttk.Button(frame1, text="Quit", command=window.destroy).pack()
frame2 = ttk.Frame(window)
but2 = ttk.Button(frame2, text="Quit", command=window.destroy).pack()
but3 = ttk.Button(frame2, text="Quit", command=window.destroy).pack()
frame1.pack()
frame2.pack()
window.mainloop()
Copyright 2019--2024 Marius PETER