pmw_counterdialog.py
来自「Python.Tkinter编程实例代码多多学习」· Python 代码 · 共 27 行
PY
27 行
from Tkinter import *
import Pmw
root = Tk()
root.option_readfile('optionDB')
root.title('CounterDialog')
Pmw.initialise()
choice = None
dialog = Pmw.CounterDialog(root,
label_text = 'Enter the number of twits (2 to 8)\n',
counter_labelpos = N,
entryfield_value = 2,
counter_datatype = 'numeric',
entryfield_validate =
{'validator' : 'numeric', 'min' : 2, 'max' : 8},
buttons = ('OK', 'Cancel'),
defaultbutton = 'OK',
title = 'Twit of the Year')
dialog.tkraise()
result = dialog.activate()
print 'You clicked on', result, dialog.get()
root.mainloop()
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?