From e2159446d0ffd053a54c2752de479f2aae7ef2c4 Mon Sep 17 00:00:00 2001 From: "DHR.Mike" Date: Fri, 19 Dec 2025 14:51:42 -0800 Subject: [PATCH] Update Uptated-Prototype/tkinter-Test.py --- Uptated-Prototype/tkinter-Test.py | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/Uptated-Prototype/tkinter-Test.py b/Uptated-Prototype/tkinter-Test.py index 279df6b..c6f7e90 100644 --- a/Uptated-Prototype/tkinter-Test.py +++ b/Uptated-Prototype/tkinter-Test.py @@ -32,10 +32,14 @@ except Exception as e: My_Test_Label = Label(Input_Box_Frame, text="First Label", background = "red", justify = "center") My_Test_Label2 = Label(Controls_Box_Frame, text="Second Label", background = "blue", justify = "center") +My_Test_Label3 = Label(Controls_Box_Frame, text="Third Label", background = "green", justify = "center") +My_Test_Label4 = Label(Controls_Box_Frame, text="Fourth Label", background = "yellow", justify = "center") My_Test_Label.pack(fill = "both", expand = True) -My_Test_Label2.pack(fill = "both", expand = True) +My_Test_Label2.pack(fill = "both", expand = True, side "left") +My_Test_Label3.pack(fill = "both", expand = True, side "left") +My_Test_Label4.pack(fill = "both", expand = True, side "left") Root_Window.mainloop()