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