Top "Tk" questions

The Tk toolkit is a scripted GUI toolkit that is designed to be used from dynamic languages (initially Tcl, but also Perl and Python).

Why are Tk GUI's considered ugly?

Tk GUI's seem to be universally considered ugly, but I'd like to know why specifically. Some in the Tcl/Tk …

user-interface tk
Expand Text widget to fill the entire parent Frame in Tkinter

I got this Text widget, and I'd like for it to expand and fill its entire parent, using the Grid …

python tkinter tk
What does calling Tk() actually do?

I was brushing up on Tkinter when I looked upon a minimal example from the NMT Tkinter 8.5 Reference. #!/usr/bin/…

python tkinter tk
Display directory content with tkinter Treeview widget

At the moment I am working on a program that has its own project files and inside that are like …

python treeview tkinter tk
from matplotlib.backends import _tkagg ImportError: cannot import name _tkagg

While trying to run this example to test how matplotlib works with Tkinter, I am getting the error: (env)fieldsofgold@…

python matplotlib pip virtualenv tk
Error ".onLoad failed in loadNamespace() for 'tcltk'"

I have a general question about how to effectively load any kind of external package into R. I have found …

r tk cran
Python Tkinter throwing Tcl error

I am learning basic GUI in Python, and I came across a sample example to read file name from file …

python-2.7 tkinter tk
Tkinter grid geometry manager size propagation (with sticky)

I'm missing something about how sizes propagate in Tk. Try this: from Tkinter import * root = Tk() frame1 = Frame(root, border=4, …

tkinter tk
How to implement the MVC-pattern in Tkinter

I need a basic example where MVC pattern is used with Python TK. I have some code using Tkinter, however …

python model-view-controller tkinter tk
tkinter enable/disable menu

I need some help in this. I want the user to login ... once he is logged in, only the menu …

python tkinter tk