Update Uptated-Prototype/tkinter-Test.py

This commit is contained in:
2025-12-19 14:51:42 -08:00
parent 140e5e7b39
commit e2159446d0

View File

@@ -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()