Update Uptated-Prototype/tkinter-Test.py

This commit is contained in:
2025-12-19 14:57:46 -08:00
parent 0d0030c2f7
commit c238dae4e8

View File

@@ -37,9 +37,9 @@ My_Test_Label4 = Label(Controls_Box_Frame, text="Fourth Label", background = "ye
My_Test_Label.pack(fill = "both", expand = True)
My_Test_Label2.pack(side = "left")
My_Test_Label3.pack(side = "left")
My_Test_Label4.pack(side = "left")
My_Test_Label2.grid(row=0, column=0)
My_Test_Label3.grid(row=0, column=1)
My_Test_Label4.grid(row=0, column=2)
Root_Window.mainloop()