Re: Tkinter new window contentent when button is clicked.

2021-02-28 Thread Bischoop
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

Re: Tkinter new window contentent when button is clicked.

2021-02-24 Thread MRAB
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

Re: Tkinter new window contentent when button is clicked.

2021-02-24 Thread Bischoop
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

Tkinter new window contentent when button is clicked.

2021-02-24 Thread Bischoop
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