Python Forum
[Tkinter] calling a new window from a tkinter window
Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
[Tkinter] calling a new window from a tkinter window
#1
I'm having trouble navigating nested windows calls with tkinter. The first window builds and executes well, with a window.mainloop() statement at at the end to set up the window polling.

But now, when I use a button to call a function, which in turn, opens up a new window, I end up with a parallel window that does not wait for the return values returned by the second function. In this case the second window is just a simple dropdown menu, with user selected choice, which should be returned to the main function. Everything works, except the code that calls the new window doesn't wait, and then execute subsequent code. I started exploring wait_window(), but don't understand how that might help.
Reply
#2
I don't understand what you are asking, can you show a minimal example of runnable code.
Reply
#3
In a script you can write some text, prompt for input, and perform some action based on the input. In a GUI you cannot use this pattern because the GUI cannot control what the user does next. If you draw a window with a menu the user might close your window and not make a menu selection. This must be allowed. In a GUI application you would draw the window with the menu, and specify a function to call when the menu selection is made.

So if your logic is:
Make menu
Draw menu
Wait for selection
Process selection

You should change it to:
Make menu, bind menu to call Process selection
Draw Menu
Reply


Possibly Related Threads…
Thread Author Replies Views Last Post
  PyQt5 - Get a parameter from a modal window Ninja2112 5 752 Nov-24-2025, 02:18 PM
Last Post: deanhystad
  tkinter weird image displaying behaviour pyDream 2 1,016 Oct-18-2025, 11:15 AM
Last Post: deanhystad
  [Tkinter] Help create scrollbar in chatbot with tkinter on python fenec10 6 7,286 Aug-28-2025, 10:38 AM
Last Post: fazanbabar82
  [Tkinter] passing value from tkinter entry to create xml document iqbshaik 7 3,570 Aug-28-2025, 10:32 AM
Last Post: david568
  Tkinter: An image and label are not appearing. emont 7 5,968 Jul-28-2025, 09:40 AM
Last Post: enablespindle
  Losing mouse acces, Tkinter, (gui inside) System-taskbar. MvGulik 3 1,570 Jul-10-2025, 10:53 AM
Last Post: MvGulik
  Pyqt5 - Close a modal window Ninja2112 9 2,843 Apr-23-2025, 02:56 PM
Last Post: deanhystad
  GUI created in Tkinter does NOT show up RCasanuevaU 3 2,795 Apr-09-2025, 04:47 PM
Last Post: RCasanuevaU
  [Tkinter] Sudoku solver with tkinter flash77 9 11,344 Apr-03-2025, 01:01 PM
Last Post: gibbon
  tkinter Radio button group not setting default selection simonc88 3 3,634 Mar-20-2025, 06:53 PM
Last Post: buran

Forum Jump:

User Panel Messages

Announcements
Announcement #1 8/1/2020
Announcement #2 8/2/2020
Announcement #3 8/6/2020