使用自带的tkinter模块,简单的弹输入框示例,返回输入值
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
|
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弹出输入框并获取输入值的实例就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持服务器之家。
原文链接:https://blog.csdn.net/t60339/article/details/82842728