pmw_selectiondialog.py

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

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

dialog = None

def execute(result):
    sels = dialog.getcurselection()
    if len(sels) == 0:
        print 'You clicked on', result, '(no selection)'
    else:
        print 'You clicked on', result, sels[0]
    dialog.deactivate(result)

dialog = Pmw.SelectionDialog(root, title='String',
	    buttons=('OK', 'Cancel'), defaultbutton='OK',
	    scrolledlist_labelpos=N, label_text='Who sells string?',
	    scrolledlist_items=('Mousebat', 'Follicle', 'Goosecreature',
                      'Mr. Simpson', 'Ampersand', 'Spong', 'Wapcaplet',
                      'Looseliver', 'Vendetta', 'Prang'),
	    command=execute)
dialog.activate()

root.mainloop()

⌨️ 快捷键说明

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