Python Forum

Full Version: Can I configure 'tab' widgets state to 'disabled'?
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
notebooks = ttk.Notebook(root)
tab_1 = ttk.rame(notebooks)
notebooks.add(tab_1, text = 'tab-1')
Can I configure the 'tab_1' un-selectable like Text(or other) widgets state = tk.DISABLED ?
Try searching before posting.

search: disable tkinter notebook tab

first hit:
https://stackoverflow.com/questions/2098...python-gui

Followed by several other very good answers and links to resources that are useful for answering this and other notebook related questions.
(Jan-02-2021, 07:21 PM)deanhystad Wrote: [ -> ]Try searching before posting.

search: disable tkinter notebook tab

first hit:
https://stackoverflow.com/questions/2098...python-gui

Followed by several other very good answers and links to resources that are useful for answering this and other notebook related questions.

Thanks. Wink