|
- import tkinter as tk
-
- from ui.app_state import AppState
- from ui.front_page.front_page import FrontPage
- from ui.icons import icons
-
-
- class App(tk.Tk):
- def __init__(self):
- super().__init__()
- self.app_state = AppState(auto_load=True)
- icons.load_icons()
-
- self.title("MNIST Training Center")
- self.geometry("1024x720")
-
- self.front_page = FrontPage(self, self.app_state)
- self.front_page.pack(expand=1, fill="both")
|