代码搜索:tkinter

找到约 422 项符合「tkinter」的源代码

代码结果 422
www.eeworm.com/read/438717/1823287

py animation-w-velocity-ctrl.py

from Tkinter import * # this is the same as simple-demo-1.py, but uses # subclassing. # note that there is no explicit call to start Tk. # Tkinter is smart enough to start the system if it's not a
www.eeworm.com/read/438717/1823300

py canvas-gridding.py

from Tkinter import * # this is the same as simple-demo-1.py, but uses # subclassing. # note that there is no explicit call to start Tk. # Tkinter is smart enough to start the system if it's not a
www.eeworm.com/read/438717/1823283

py 00-hello-world.py

from Tkinter import * # note that there is no explicit call to start Tk. # Tkinter is smart enough to start the system if it's not already going. class Test(Frame): def printit(self): print "
www.eeworm.com/read/100127/6274054

py svkill.py

#! /usr/bin/env python # Tkinter interface to SYSV `ps' and `kill' commands. from Tkinter import * if TkVersion < 4.0: raise ImportError, "This version of svkill requires Tk 4.0 or later" from st
www.eeworm.com/read/438717/1823315

py svkill.py

#! /usr/bin/env python # Tkinter interface to SYSV `ps' and `kill' commands. from Tkinter import * if TkVersion < 4.0: raise ImportError, "This version of svkill requires Tk 4.0 or later" from st
www.eeworm.com/read/438718/1822809

py turtle.py

# LogoMation-like turtle graphics from math import * # Also for export import Tkinter Tk = Tkinter Error = Exception class RawPen: def __init__(self, canvas): self._canvas = canvas
www.eeworm.com/read/100127/6274017

py window-creation-w-location.py

from Tkinter import * import sys ##sys.path.append("/users/mjc4y/projects/python/tkinter/utils") ##from TkinterUtils import * # this shows how to create a new window with a button in it that # can
www.eeworm.com/read/100127/6274046

py kill.py

#! /usr/bin/env python # Tkinter interface to Linux `kill' command. from Tkinter import * from string import splitfields from string import split import commands import os class BarButton(Menubutton
www.eeworm.com/read/438717/1823278

py window-creation-w-location.py

from Tkinter import * import sys ##sys.path.append("/users/mjc4y/projects/python/tkinter/utils") ##from TkinterUtils import * # this shows how to create a new window with a button in it that # can
www.eeworm.com/read/438717/1823307

py kill.py

#! /usr/bin/env python # Tkinter interface to Linux `kill' command. from Tkinter import * from string import splitfields from string import split import commands import os class BarButton(Menubutton