代码搜索:ReadFile
找到约 1,285 项符合「ReadFile」的源代码
代码结果 1,285
www.eeworm.com/read/411228/2190722
py pmw_labeledwidget.py
from Tkinter import *
import Pmw
root = Tk()
root.option_readfile('optionDB')
root.title('LabeledWidget')
Pmw.initialise()
frame = Frame(root, background = 'gray80')
frame.pack(fill=BOTH, exp
www.eeworm.com/read/411228/2190725
py pmw_balloon.py
from Tkinter import *
import Pmw
root = Tk()
root.option_readfile('optionDB')
root.title('Balloon Help')
Pmw.initialise()
balloon = Pmw.Balloon(root)
frame = Frame(root)
frame.pack(padx =
www.eeworm.com/read/411228/2190732
py frame3.py
from Tkinter import *
root = Tk()
root.option_readfile('optionDB')
root.title('Buttons')
f = Frame(root, width=300, height=110)
xf = Frame(f, relief=GROOVE, borderwidth=2)
Label(xf, text="You
www.eeworm.com/read/411228/2190746
py entry.py
from Tkinter import *
root = Tk()
root.option_readfile('optionDB')
root.title('Entry')
Label(root, text="Anagram:").pack(side=LEFT, padx=5, pady=10)
e = StringVar()
Entry(root, width=40, textv
www.eeworm.com/read/411228/2190754
py b_canvas_line.py
from Tkinter import *
root = Tk()
root.option_readfile('optionDB')
root.title('Canvas Line')
canvas = Canvas(root, width =200, height=160, bg='white')
for y,w in ( (150, 15), (134, 10), (122, 5
www.eeworm.com/read/411228/2190862
py text.py
from Tkinter import *
root = Tk()
root.option_readfile('optionDB')
root.title('Text')
text = Text(root, height=26, width=50)
scroll = Scrollbar(root, command=text.yview)
text.configure(yscroll
www.eeworm.com/read/411228/2190867
py frame3.py
from Tkinter import *
root = Tk()
root.option_readfile('optionDB')
root.title('Buttons')
f = Frame(root, width=300, height=110)
xf = Frame(f, relief=GROOVE, borderwidth=2)
Label(xf, text="You
www.eeworm.com/read/411228/2190925
py pmw_optionmenu.py
from Tkinter import *
import Pmw
root = Tk()
root.option_readfile('optionDB')
root.title('OptionMenu')
Pmw.initialise()
var = StringVar()
var.set('Quantity Surveyor')
opt_menu = Pmw.OptionMe
www.eeworm.com/read/411228/2190929
py pmw_timecounter.py
from Tkinter import *
import Pmw
root = Tk()
root.option_readfile('optionDB')
root.title('TimeCounter')
Pmw.initialise()
time = Pmw.TimeCounter(root, labelpos=W, label_text='HH:MM:SS',
www.eeworm.com/read/411228/2190948
py pmw_labeledwidget.py
from Tkinter import *
import Pmw
root = Tk()
root.option_readfile('optionDB')
root.title('LabeledWidget')
Pmw.initialise()
frame = Frame(root, background = 'gray80')
frame.pack(fill=BOTH, exp