1 Star 0 Fork 0

Nidhogg14/CorePython

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
animalPmw.pyw 665 Bytes
一键复制 编辑 原始数据 按行查看 历史
#!/usr/bin/env python
# Pmw GUI 演示
from Tkinter import Button, END, Label, W
from Pmw import initialise, ComboBox, Counter
top = initialise()
lb = Label(top,
text='Animals (in pairs; min: pair, max: dozen)')
lb.pack()
ct = Counter(top, labelpos=W, label_text='Number:',
datatype='integer', entryfield_value=2,
increment=2, entryfield_validate={'validator':
'integer', 'min': 2, 'max': 12})
ct.pack()
cb = ComboBox(top, labelpos=W, label_text='Type:')
for animal in ('dog', 'cat', 'hamster', 'python'):
cb.insert(END, animal)
cb.pack()
qb = Button(top, text='QUIT',
command=top.quit, bg='red', fg='white')
qb.pack()
top.mainloop()
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Python
1
https://gitee.com/Nidhogg14/CorePython.git
git@gitee.com:Nidhogg14/CorePython.git
Nidhogg14
CorePython
CorePython
main

搜索帮助