当前位置:   article > 正文

python弹框二之tkinter.messagebox_python中from tkinter.messagebox import *是什么意思

python中from tkinter.messagebox import *是什么意思

        前面写过python弹框的ctypes.windll.user32方法:https://blog.csdn.net/Gordennizaicunzai/article/details/78966694

该方法调用windows系统的user32组件,不是纯python方法,且wser32的MessageBoxA使用不当会出现乱码,不是很好用。这里介绍pythonic的弹框——tkinter.messagebox。

NAME
    tkinter.messagebox

DESCRIPTION
    # tk common message boxes
    #
    # this module provides an interface to the native message boxes
    # available in Tk 4.2 and newer.
    #
    # written by Fredrik Lundh, May 1997
    #

CLASSES
    tkinter.commondialog.Dialog(builtins.object)
        Message
    
    class Message(tkinter.commondialog.Dialog)
     |  Message(master=None, **options)
     |  
     |  A message box
     |  
     |  Method resolution order:
     |      Message
     |      tkinter.commondialog.Dialog
     |      builtins.object
     |  
     |  Data and other attributes defined here:
     |  
     |  command = 'tk_messageBox'
     |  
     |  ----------------------------------------------------------------------
     |  Methods inherited from tkinter.commondialog.Dialog:
     |  
     |  __init__(self, master=None, **options)
     |      Initialize self.  See help(type(self)) for accurate signature.
     |  
     |  show(self, **options)

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/weixin_40725706/article/detail/124857
推荐阅读
相关标签
  

闽ICP备14008679号