gpt4 book ai didi

python - (不再求答案)Python input box inside a message box

转载 作者:太空狗 更新时间:2023-10-30 01:34:16 25 4
gpt4 key购买 nike

有没有办法在使用 ctypes 库打开的消息框内添加一个输入框?到目前为止我有:

import ctypes
messageBox = ctypes.windll.user32.MessageBoxA
title = 'Title'
text = 'Message box!'
returnValue = messageBox(None, text, title, 0x40 | 0x1)
print returnValue

这给出了一个带有图像图标和两个按钮的消息框,我知道如何更改这两个按钮,并将变量“returnValue”设置为表示单击的按钮的数字。但是,我还需要一个变量,该变量将设置为消息框中的字符串输入。我需要这个并且我不能只做简单的 a = raw_input('prompt') 的原因是我希望程序本身在后台运行(它会在登录时自行启动)。

最佳答案

如果您想要一个简单的解决方案,请使用 PyMsgBox 模块。它使用 Python 的内置 tkinter 库来创建消息框,包括让用户键入响应的消息框。使用 pip install pymsgbox 安装它。

文档在这里:https://pymsgbox.readthedocs.org/

你想要的代码是:

>>> import pymsgbox
>>> returnValue = pymsgbox.prompt('Message box!', 'Title')

关于python - (不再求答案)Python input box inside a message box,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21567426/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com