📜  wxPython – wxPython 中的 wx.DisplaySizeMM()函数

📅  最后修改于: 2022-05-13 01:54:52.597000             🧑  作者: Mango

wxPython – wxPython 中的 wx.DisplaySizeMM()函数

在本文中,我们将了解 wxPython 中的 DisplaySizeMM()函数。 DisplaySizeMM()函数是 wxPython 的父函数之一。 DisplaySizeMM()函数类似于 DisplaySize()函数,唯一的区别是 DisplaySizeMM()函数返回以毫米为单位的尺寸。如果调用者对相应的值不感兴趣,则任何一个输出指针都可以为 None。

代码示例:
# importing the module
import wx
  
# definition of the Example class
class Example(wx.Frame):
  
    # instantiating the class  
    def __init__(self, *args, **kwargs):
        super(Example, self).__init__(*args, **kwargs)
  
        self.InitUI()
  
    def InitUI(self):
        # print the size of display in millimeters
        print(wx.DisplaySizeMM())
   
# definition of the main function
def main():
  
    # creating an App object
    app = wx.App()
  
    # creating an Example object
    ex = Example(None)
  
    # showing the Example object
    ex.Show()
  
    # running the App object
    app.MainLoop()
   
# driver code
if __name__ == '__main__':
    main()

输出:

(406, 229)