您好, 欢迎来到 !    登录 | 注册 | | 设为首页 | 收藏本站

如何在Python中创建一个简单的消息框?

如何在Python中创建一个简单的消息框?

您可以使用导入和单行代码,如下所示:

import ctypes  # An included library with Python install.   
ctypes.windll.user32.Message@R_879_2419@W(0, "Your text", "Your title", 1)

或像这样定义一个函数(M@R_879_2419@):

import ctypes  # An included library with Python install.
def M@R_879_2419@(title, text, style):
    return ctypes.windll.user32.Message@R_879_2419@W(0, text, title, style)
M@R_879_2419@('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

玩得开心!

注意:已编辑以Message@R_879_2419@W代替Message@R_879_2419@A

python 2022/1/1 18:29:29 有467人围观

撰写回答


你尚未登录,登录后可以

和开发者交流问题的细节

关注并接收问题和回答的更新提醒

参与内容的编辑和改进,让解决方法与时俱进

请先登录

推荐问题


联系我
置顶