About 1,070,000 results
Open links in new tab
  1. python - Switch between two frames in tkinter? - Stack Overflow

    Understanding parent and controller in Tkinter __init__ Tkinter! Understanding how to switch frames How to get variable data from a class Calling functions from a Tkinter Frame to another …

  2. python - How do I close a tkinter window? - Stack Overflow

    The question was about closing a tkinter window, not a program that uses tkinter.

  3. What is the best way to structure a Tkinter application?

    Jul 4, 2013 · This prevents global namespace pollution, plus it makes the code completely obvious when you are using Tkinter classes, ttk classes, or some of your own. The main …

  4. python - How to easily avoid Tkinter freezing? - Stack Overflow

    I developed a simple Python application doing some stuff, then I decided to add a simple GUI using Tkinter. The problem is that, while the main function is doing its stuff, the window …

  5. How to center a window on the screen in Tkinter? - Stack Overflow

    Jul 28, 2010 · I'm trying to center a tkinter window. I know I can programatically get the size of the window and the size of the screen and use that to set the geometry, but I'm wondering if …

  6. Create a directly-executable cross-platform GUI app using Python

    As for a GUI library that works cross platform, Python's Tk/Tcl widget library works very well, and I believe is sufficiently cross platform. Tkinter is the python interface to Tk/Tcl From the python …

  7. python - How to add an image in Tkinter? - Stack Overflow

    Apr 20, 2017 · or if tk.TkVersion < 8.6: try: # In order to be able to import tkinter for import tkinter as tk # either in python 2 or in python 3 except ImportError: import Tkinter as tk def …

  8. How to replace the icon in a Tkinter app? - Stack Overflow

    Oct 15, 2015 · If you haven't an icon.ico file you can use an ImageTk.PhotoImage(ico) and wm_iconphoto. import tkinter as tk from PIL import Image, ImageTk root = tk.Tk() ico = …

  9. How do I insert a JPEG image into a python Tkinter window?

    import tkinter as tk from PIL import ImageTk, Image #This creates the main window of an application window = tk.Tk() window.title("Join") window.geometry("300x300") …

  10. python - Does tkinter have a table widget? - Stack Overflow

    Feb 19, 2012 · Tkinter doesn't have a built-in table widget. The closest you can use is a Listbox or a Treeview of the tkinter's sub package ttk. However, you can use tktable, which is a wrapper …