网络编程
位置:首页>> 网络编程>> Python编程>> Python弹出输入框并获取输入值的实例

Python弹出输入框并获取输入值的实例

作者:劲爆音乐网  发布时间:2021-04-05 00:49:10 

标签:Python,弹出,输入框,输入值

使用自带的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

来源:https://blog.csdn.net/t60339/article/details/82842728

0
投稿

猜你喜欢

手机版 网络编程 asp之家 www.aspxhome.com