- methods from class MainWindow move to class FrameWidgets for active color_label when theme change

- optimize columnconfigure, rowconfigure in class MainWindow and FrameWidgets
- add new Frame for Widgets on Bottom
- optimize from tkinter * to from tkinter import filedialog, ttk, TclError
This commit is contained in:
Désiré Werner Menrath 2024-11-08 21:32:45 +01:00
parent 8a32065676
commit 2fac03a927

View File

@ -22,7 +22,7 @@ class MainWindow(tk.Tk):
self.y_height = 383
self.monitor_center_x = self.winfo_screenwidth() / 2 - (self.x_width / 2)
self.monitor_center_y = self.winfo_screenheight() / 2 - (self.y_height / 2)
self.resizable(width=True, height=True)
self.resizable(width=False, height=False)
self.title('Wire-Py')
self.geometry('%dx%d+%d+%d' % (self.x_width, self.y_height, self.monitor_center_x, self.monitor_center_y))
self.columnconfigure(0, weight=1)