您可以使用导入和单行代码,如下所示:
import ctypes # An included library with Python install. ctypes.windll.user32.MessageBoxW(0, "Your text", "Your title", 1)
或像这样定义一个函数(Mbox):
import ctypes # An included library with Python install.def Mbox(title, text, style): return ctypes.windll.user32.MessageBoxW(0, text, title, style)Mbox('Your title', 'Your text', 1)注意样式如下:
## Styles:## 0 : OK## 1 : OK | Cancel## 2 : Abort | Retry | Ignore## 3 : Yes | No | Cancel## 4 : Yes | No## 5 : Retry | Cancel ## 6 : Cancel | Try Again | Continue
玩得开心!
注意:已编辑以
MessageBoxW代替
MessageBoxA



