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.
2 Respuestas
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.
0
Thanks...lemme first check it out and ill tell you if successfull