代码搜索:tkinter
找到约 422 项符合「tkinter」的源代码
代码结果 422
www.eeworm.com/read/100127/6274033
py canvas-mult-item-sel.py
from Tkinter import *
# allows moving dots with multiple selection.
SELECTED_COLOR = "red"
UNSELECTED_COLOR = "blue"
class Test(Frame):
########################################################
www.eeworm.com/read/100127/6274034
py canvas-moving-or-creating.py
from Tkinter import *
# this file demonstrates a more sophisticated movement --
# move dots or create new ones if you click outside the dots
class Test(Frame):
#################################
www.eeworm.com/read/325535/3482930
py vtktkrenderwidget.py
"""
A simple VTK input file for Python, which includes
a vtkTkRenderWidget for Tkinter. The widget can be
accessed under the names 'vtkTkRenderWidget' or 'vtkRenderWidget'
Created by David Gobbi, A
www.eeworm.com/read/438717/1823294
py canvas-mult-item-sel.py
from Tkinter import *
# allows moving dots with multiple selection.
SELECTED_COLOR = "red"
UNSELECTED_COLOR = "blue"
class Test(Frame):
########################################################
www.eeworm.com/read/438717/1823295
py canvas-moving-or-creating.py
from Tkinter import *
# this file demonstrates a more sophisticated movement --
# move dots or create new ones if you click outside the dots
class Test(Frame):
#################################
www.eeworm.com/read/411228/2190441
py example_6_2.py
from Tkinter import *
import Pmw
eventList = { '2': 'KeyPress', '3': 'KeyRelease', '4': 'ButtonPress',
'5': 'ButtonRelease', '6': 'Motion', '7': 'Enter',
'8': 'Leave'
www.eeworm.com/read/411228/2190871
py example_12_1.py
import string
from Tkinter import *
class Navigation:
def __init__(self, master):
frame = Frame(master, takefocus=1, highlightthickness=2,
highlightc
www.eeworm.com/read/411228/2190920
py example_7_2.py
from Tkinter import *
from Common_7_1 import * #
from GUICommon_7_1 import * #
class LED(GUICommon):
www.eeworm.com/read/100127/6274025
py canvas-with-scrollbars.py
from Tkinter import *
# This example program creates a scroling canvas, and demonstrates
# how to tie scrollbars and canvses together. The mechanism
# is analogus for listboxes and other widgets wit
www.eeworm.com/read/100127/6274028
py menu-simple.py
from Tkinter import *
# some vocabulary to keep from getting confused. This terminology
# is something I cooked up for this file, but follows the man pages
# pretty closely
#
#
#
# This is