Page_4.py 299 B

123456789101112
  1. import tkinter as tk
  2. import tk_tools
  3. from .globals import *
  4. class Page_4(tk.Frame):
  5. def __init__(self, parent, controller):
  6. tk.Frame.__init__(self, parent)
  7. label = tk.Label(self, text="Einstellungen", font=LARGE_FONT)
  8. label.pack(pady=10,padx=10)
  9. def update(self, visible):
  10. pass