<legend id='zNkxd'><style id='zNkxd'><dir id='zNkxd'><q id='zNkxd'></q></dir></style></legend>

    • <bdo id='zNkxd'></bdo><ul id='zNkxd'></ul>
    1. <i id='zNkxd'><tr id='zNkxd'><dt id='zNkxd'><q id='zNkxd'><span id='zNkxd'><b id='zNkxd'><form id='zNkxd'><ins id='zNkxd'></ins><ul id='zNkxd'></ul><sub id='zNkxd'></sub></form><legend id='zNkxd'></legend><bdo id='zNkxd'><pre id='zNkxd'><center id='zNkxd'></center></pre></bdo></b><th id='zNkxd'></th></span></q></dt></tr></i><div id='zNkxd'><tfoot id='zNkxd'></tfoot><dl id='zNkxd'><fieldset id='zNkxd'></fieldset></dl></div>

      <small id='zNkxd'></small><noframes id='zNkxd'>

      <tfoot id='zNkxd'></tfoot>

      没有大量库依赖的 Python 消息框

      时间:2023-07-23
        <tbody id='M6MnX'></tbody>

        • <bdo id='M6MnX'></bdo><ul id='M6MnX'></ul>
          • <i id='M6MnX'><tr id='M6MnX'><dt id='M6MnX'><q id='M6MnX'><span id='M6MnX'><b id='M6MnX'><form id='M6MnX'><ins id='M6MnX'></ins><ul id='M6MnX'></ul><sub id='M6MnX'></sub></form><legend id='M6MnX'></legend><bdo id='M6MnX'><pre id='M6MnX'><center id='M6MnX'></center></pre></bdo></b><th id='M6MnX'></th></span></q></dt></tr></i><div id='M6MnX'><tfoot id='M6MnX'></tfoot><dl id='M6MnX'><fieldset id='M6MnX'></fieldset></dl></div>
          • <small id='M6MnX'></small><noframes id='M6MnX'>

              <legend id='M6MnX'><style id='M6MnX'><dir id='M6MnX'><q id='M6MnX'></q></dir></style></legend>
            1. <tfoot id='M6MnX'></tfoot>

              • 本文介绍了没有大量库依赖的 Python 消息框的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着跟版网的小编来一起学习吧!

                问题描述

                是否有一个消息框类,在程序成功或失败时,我可以只显示一个简单的消息框,而无需庞大的 GUI 库或任何库.(我的脚本只做一件事).

                Is there a messagebox class where I can just display a simple message box without a huge GUI library or any library upon program success or failure. (My script only does 1 thing).

                另外,我只需要它在 Windows 上运行.

                Also, I only need it to run on Windows.

                推荐答案

                你可以使用 ctypes 库,随 Python 一起安装:

                You can use the ctypes library, which comes installed with Python:

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

                以上代码适用于 Python 3.x.对于 Python 2.x,请使用 MessageBoxA 而不是 MessageBoxW,因为 Python 2 默认使用非 unicode 字符串.

                Above code is for Python 3.x. For Python 2.x, use MessageBoxA instead of MessageBoxW as Python 2 uses non-unicode strings by default.

                这篇关于没有大量库依赖的 Python 消息框的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!

                上一篇:如何使用 Python 消除焦点或最小化窗口? 下一篇:没有 PIL 的 Python windows 7 屏幕截图

                相关文章

                <small id='A7r6b'></small><noframes id='A7r6b'>

                  <i id='A7r6b'><tr id='A7r6b'><dt id='A7r6b'><q id='A7r6b'><span id='A7r6b'><b id='A7r6b'><form id='A7r6b'><ins id='A7r6b'></ins><ul id='A7r6b'></ul><sub id='A7r6b'></sub></form><legend id='A7r6b'></legend><bdo id='A7r6b'><pre id='A7r6b'><center id='A7r6b'></center></pre></bdo></b><th id='A7r6b'></th></span></q></dt></tr></i><div id='A7r6b'><tfoot id='A7r6b'></tfoot><dl id='A7r6b'><fieldset id='A7r6b'></fieldset></dl></div>

                1. <legend id='A7r6b'><style id='A7r6b'><dir id='A7r6b'><q id='A7r6b'></q></dir></style></legend>
                  <tfoot id='A7r6b'></tfoot>

                      <bdo id='A7r6b'></bdo><ul id='A7r6b'></ul>