Python: ttk.Notebook tab focus

I did not understand how to set focus on a separate tab of ttk.Notebook. focus_set does not work. Is there a possibility?

Thanks in advance

+4
source share
2 answers

I had the same problem. I found the "select" method for laptops (ttk.Notebook.select (someTabFrame)) solves this problem:

import ttk, Tkinter

mainWindow = Tkinter.Tk()

mainFrame = Tkinter.Frame(mainWindow, name = 'main-frame')
mainFrame.pack(fill = Tkinter.BOTH) # fill both sides of the parent

nb = ttk.Notebook(mainFrame, name = 'nb')
nb.pack(fill = Tkinter.BOTH, padx=2, pady=3) # fill "master" but pad sides

tab1Frame = Tkinter.Frame(nb, name = 'tab1')
Tkinter.Label(tab1Frame, text = 'this is tab 1').pack(side = Tkinter.LEFT)
nb.add(tab1Frame, text = 'tab 1')

tab2Frame = Tkinter.Frame(nb, name = 'tab2')
Tkinter.Label(tab2Frame, text = 'this is tab 2').pack(side = Tkinter.LEFT)
nb.add(tab2Frame, text = 'tab 2')

nb.select(tab2Frame) # <-- here what you're looking for

mainWindow.mainloop()

python docs for ttk.Notebook: https://docs.python.org/2/library/ttk.html#ttk.Notebook

I also used this blog post as a model for my code: http://poquitopicante.blogspot.com/2013/06/blog-post.html

+5
source

, wordsforthewise, . select get set, , .

:

import ttk, Tkinter
from pango import Weight
from Tkinter import Button


tab2Frame = None
tab1Frame = None

def switchTab():
    if nb.select()[-1] == "1":
        nb.select(tab2Frame)
    elif nb.select()[-1] == "2":
        nb.select(tab1Frame)

mainWindow = Tkinter.Tk()

mainWindow.geometry("%dx%d+0+0" % (200, 200))
mainFrame = Tkinter.Frame(mainWindow, name = 'main-frame')
mainFrame.pack(fill = Tkinter.BOTH) # fill both sides of the parent

button = Button(mainWindow, text = "Switch", command = switchTab)
button.configure(width = 15, activebackground = "#6f6Fff")
button.pack()

nb = ttk.Notebook(mainFrame, name = 'nb')
nb.pack(fill = Tkinter.BOTH, padx=2, pady=3) # fill "master" but pad sides

tab1Frame = Tkinter.Frame(nb, name = 'tab1')
Tkinter.Label(tab1Frame, text = 'this is tab 1').pack(side = Tkinter.LEFT)
nb.add(tab1Frame, text = 'tab 1')

tab2Frame = Tkinter.Frame(nb, name = 'tab2')
Tkinter.Label(tab2Frame, text = 'this is tab 2').pack(side = Tkinter.LEFT)
nb.add(tab2Frame, text = 'tab 2')

mainWindow.mainloop()
0

All Articles