changed tabview test

This commit is contained in:
TomSchimansky
2022-11-13 17:10:04 +01:00
parent 3f44877984
commit b62543f332
2 changed files with 8 additions and 5 deletions

View File

@@ -1,6 +1,7 @@
import customtkinter
app = customtkinter.CTk()
app.geometry("800x900")
tabview_1 = customtkinter.CTkTabview(app)
tabview_1.pack(padx=20, pady=20)
@@ -18,8 +19,6 @@ tabview_1.delete("tab 42")
tabview_1.move(0, "tab 2")
b1 = customtkinter.CTkButton(master=tab_1, text="button tab 1")
b1.pack(pady=20)
b2 = customtkinter.CTkButton(master=tabview_1.tab("tab 2"), text="button tab 2")
b2.pack()
@@ -27,4 +26,9 @@ b2.pack()
tabview_1.configure(state="normal")
# tabview_1.delete("tab 1")
for i in range(10):
for j in range(30):
button = customtkinter.CTkButton(tabview_1.tab("tab 1"), height=10, width=30, font=customtkinter.CTkFont(size=8))
button.grid(row=j, column=i, padx=2, pady=2)
app.mainloop()