我有一个ttk.Notebook和一个Button我想切换到另一个标签。 如何实现呢?
看起来更改标签状态(正常,已禁用和隐藏)无法解决我的问题,因为我不想禁用任何标签。
import time
import ttk as ttk
import Tkinter as tk
root=tk.Tk()
root.config(width=300,height=220)
notebook=ttk.Notebook(root)
notebook.place(x=0,y=0)
tabList=[]
i=0
while i<6:
tabList.append(tk.Frame(root))
tabList[i].config(width=300,height=150,background='white')
i+=1
i=0
while i<6:
notebook.add(tabList[i],text='tab'+str(i))
i+=1
def fLoopTabs():
i=0
while i<6:
notebook.select(i)
time.sleep(2)
#Here goes the Screenshot function
i+=1
button=ttk.Button(root,text='Loop',command=fLoopTabs)
button.place(x=20,y=180)
root.mainloop()
答案 0 :(得分:5)
请参阅以下链接:
Python Docs
如果您看到应该执行以下操作的select方法,请执行以下操作:
notebook.select(tab_id)
其中tab标签可以采用多种形式(参见第24.2.5.3节),但最有用的是整数(我认为这是与列表使用索引的方式类似的索引)或者你想要的标签名称切换到。