使用Python的Ctypes文本输入框帮助

时间:2016-01-28 03:57:12

标签: python-3.x ctypes

如果可能,如何使用python 3或使用MessageBoxW在Ctypes中创建带有文本输入框的弹出窗口?

1 个答案:

答案 0 :(得分:0)

有效!

import ctypes
MessageBox = ctypes.windll.user32.MessageBoxW
MessageBox(None, 'Hello', 'Window title', 0)