pmw_messagedialog.py

来自「Python.Tkinter编程实例代码多多学习」· Python 代码 · 共 19 行

PY
19
字号
from Tkinter import *
import Pmw
root = Tk()
root.option_readfile('optionDB')
root.title('MessageDialog')
Pmw.initialise()

dialog = Pmw.MessageDialog(root, title = 'Simple Dialog',
                   defaultbutton = 0,
                   buttons = ('OK', 'Apply', 'Cancel', 'Help'),
                   message_text = 'This dialog box was constructed on demand')
dialog.iconname('Simple message dialog')
result = dialog.activate()

print 'You selected', result

root.mainloop()

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?