您好,登錄后才能下訂單哦!
使用自帶的Tkinter模塊,簡單的彈輸入框示例,返回輸入值
from Tkinter import * import tkMessageBox def getInput(title, message): def return_callback(event): print('quit...') root.quit() def close_callback(): tkMessageBox.showinfo('message', 'no click...') root = Tk(className=title) root.wm_attributes('-topmost', 1) screenwidth, screenheight = root.maxsize() width = 300 height = 100 size = '%dx%d+%d+%d' % (width, height, (screenwidth - width)/2, (screenheight - height)/2) root.geometry(size) root.resizable(0, 0) lable = Label(root, height=2) lable['text'] = message lable.pack() entry = Entry(root) entry.bind('<Return>', return_callback) entry.pack() entry.focus_set() root.protocol("WM_DELETE_WINDOW", close_callback) root.mainloop() str = entry.get() root.destroy() return str
以上這篇Python彈出輸入框并獲取輸入值的實例就是小編分享給大家的全部內容了,希望能給大家一個參考,也希望大家多多支持億速云。
免責聲明:本站發(fā)布的內容(圖片、視頻和文字)以原創(chuàng)、轉載和分享為主,文章觀點不代表本網(wǎng)站立場,如果涉及侵權請聯(lián)系站長郵箱:is@yisu.com進行舉報,并提供相關證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權內容。