I am in over my head - a friend requires help with a Tkinter app, but while I am a seasoned C developer I have no experience of python. I have read the Tkinter manual and have got so far:
There are a number of ways of getting callbacks when Text or Entry widgets are changed in Tkinter, but I haven\'t found one for Listbox\'s (it doesn\'t help that much of the event documentation I can
Closed. This question is not reproducible or was caused by typos. It is not currently accepting answers.
I\'m trying to create a GUI in Python using the Tkinter module, and part of that involves giving the user the option of two radioboxes, and to select which one they want. Depending on which box they t
Exactly as the question says. Text widgets have the <<M开发者_JAVA技巧odified>> event, but Entry widgets don\'t appear to.Add a Tkinter StringVar to your Entry widget.Bind your callback to
I\'m a newbie python/tkinter programmer! I am displaying a text widget for the user to use as a barebones editor.
I\'m using Tkinter in Python, 开发者_Python百科and trying to create code to run when a text box\'s value is changed. All the code I find online uses a mysterious tk member of Tkinter widgets, and I ca
I\'m creating a GUI for a python simulator. The GUI provides tools to set up the simulation and run it. While the simulation is running I want to pass progress information to the GUI and have it displ
so i have this code: import thread from Tkinter import * import random import time Admin=Tk() def moveit(number):
I\'m working on an applicati开发者_StackOverflow中文版on to edit DNA sequences and I\'d like to have a tkinter text widget in which only letters atgcATGC can be entered.