Update Uptated-Prototype/tkinter-Test.py

This commit is contained in:
2025-12-19 15:04:39 -08:00
parent 04a1bf8049
commit 8a42747daa

View File

@@ -18,14 +18,14 @@ except Exception as e:
print("An exception occurred - when creating input Frame.")
# Attempts to create a Controls Frame
try:
Controls_Box_Frame = ttk.Frame(Root_Window)
Controls_Box_Frame = ttk.Frame(Root_Window, style="My.TLabel")
except Exception as e:
print(e, type(e))
print("An exception occurred - when creating Controls Frame.")
try:
Input_Box_Frame.pack(fill = "both", expand = True)
Controls_Box_Frame.pack(anchor = "center", expand = True, style="My.TLabel")
Controls_Box_Frame.pack(anchor = "center", expand = True)
except Exception as e:
print(e, type(e))
print("An exception occurred - when placing Frames.")