wxPython wx.DisplaySizeMM()函数在wxPython中的应用
在这篇文章中,我们将学习wxPython中的DisplaySizeMM()函数。DisplaySizeMM()函数是wxPython的父函数之一。DisplaySizeMM()函数与DisplaySize()函数类似,唯一的区别是DisplaySizeMM()函数返回的尺寸是毫米。如果调用者对相应的值不感兴趣,输出指针中的任何一个都可以是无。
语法:wx.DisplaySizeMM()
参数。DisplaySizeMM()函数不需要参数。
返回: ( width, height )
返回类型:元组
代码示例。
# 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)