Top "Tkinter" questions

Tkinter is the standard Python interface to the "Tk" graphical user interface toolkit.

Tkinter askquestion dialog box

I have been trying to add an askquestion dialog box to a delete button in Tkinter. Curently I have a …

python tkinter tkmessagebox
How to stop Tkinter Frame from shrinking to fit its contents?

This is the code that's giving me trouble. f = Frame(root, width=1000, bg="blue") f.pack(fill=X, expand=True) …

python label tkinter frame
Colour chart for Tkinter and Tix

This isn't a question but an answer to help others that might run into this issue. I wanted to visualise …

python tkinter tix
ValueError: invalid literal for int() with base 16: '\x0e\xa3' Python

I get bytes from the serial port which represents the voltage on my PIC board. But I can't convert these …

python string tkinter decimal pyserial
Getting a callback when a Tkinter Listbox selection is changed?

There are a number of ways of getting callbacks when Text or Entry widgets are changed in Tkinter, but I …

python events tkinter
How to make a Tkinter window not resizable?

I need a Python script that uses the Tkinter module to create a static (not resizable) window. I have a …

python-3.x tkinter static
ImportError DLL load failed importing _tkinter

I'm using python 2.7.2 and windows 7. I searched through internet, helps and other sources but i can't find an answer to …

python windows tkinter
How to bundle a Python application including dependencies?

I need to package my Python application, its dependencies and Python into a single MSI installer. The end result should …

python tkinter packaging
Opening File (Tkinter)

I'm trying to make a Tkinter program that can open a file. So far it opens a tk window that …

python tkinter openfiledialog
Rounded button tkinter python

I am trying to get rounded buttons for my script using tkinter. I found the following code: from tkinter import * …

python tkinter tkinter-canvas