标签: python-3.x ctypes
如果可能,如何使用python 3或使用MessageBoxW在Ctypes中创建带有文本输入框的弹出窗口?
答案 0 :(得分:0)
有效!
import ctypes MessageBox = ctypes.windll.user32.MessageBoxW MessageBox(None, 'Hello', 'Window title', 0)