Tkinter Notebook Widget help! | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
0

Tkinter Notebook Widget help!

I'm new to tkinter and I am planning on using the Notebook widget for some project. With a radiobutton, i can assign values that will identify each button and I absolutely have no idea on how to access the 'values' of a Notebook in order to have a value that identifies each tab.

23rd Apr 2022, 10:53 PM
Kevin Ngigi
Kevin Ngigi - avatar
2 Answers
0
Start by looking at the tkinter documentation. You would normally store the reference to your Notebook in a variable, then you can access its properties and methods through that variable. https://docs.python.org/3/library/tkinter.ttk.html#tab-options You might get more relevant help, if you actually post your code, and explain what you are trying to achieve.
24th Apr 2022, 4:54 AM
Tibor Santa
Tibor Santa - avatar
0
Thanks...lemme first check it out and ill tell you if successfull
24th Apr 2022, 8:47 AM
Kevin Ngigi
Kevin Ngigi - avatar