added move() method to CTkTabview

This commit is contained in:
Tom Schimansky
2022-10-14 19:58:16 +02:00
parent 103358d037
commit 205cdae5f9
3 changed files with 17 additions and 5 deletions

View File

@ -5,8 +5,8 @@ app = customtkinter.CTk()
tabview_1 = customtkinter._CTkTabview(app, state="disabled")
tabview_1.pack(padx=20, pady=20)
tab_1 = tabview_1.add("tab 2")
tabview_1.insert(0, "tab 1")
tab_1 = tabview_1.add("tab 1")
tabview_1.insert(0, "tab 2")
tabview_1.add("tab 42")
tabview_1.set("tab 42")
@ -16,12 +16,15 @@ tabview_1.delete("tab 42")
tabview_1.insert(1, "tab 42")
tabview_1.delete("tab 42")
#b1 = customtkinter.CTkButton(master=tab_1, text="button tab 1")
#b1.pack(pady=20)
tabview_1.move(0, "tab 3")
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()
tabview_1.tab("tab 2").configure(fg_color="red")
tabview_1.configure(state="normal")
# tabview_1.delete("tab 1")
app.mainloop()