On 2021-02-25, MRAB wrote:
>>
> The trick is to put the "pages" on top of each other and then show the
> appropriate one, something like this:
> import tkinter as tk
>
> def on_next_page():
> # Brings page 2 to the top.
> frame_2.tkraise()
>
> def on_previous_page():
> # Brings pa
On 2021-02-24 21:57, Bischoop wrote:
I'm learning Tkinter now and have upgraded few programs I've made in CLI
in the past.
What is bothering me now is what I should look at when I want new
content in a window when button is 'Next' is clicked. In some programs
we're clicking button next and new c
On 2021-02-24, Bischoop wrote:
>
Just came to solution, I learnt that the combobox can be bind and call
function when combobox value changes.
--
Thanks
--
https://mail.python.org/mailman/listinfo/python-list
I'm learning Tkinter now and have upgraded few programs I've made in CLI
in the past.
What is bothering me now is what I should look at when I want new
content in a window when button is 'Next' is clicked. In some programs
we're clicking button next and new content appears in same window.
I've u