windows 如何在python(tkinter)上获取屏幕尺寸

i7uaboj4  于 2023-11-21  发布在  Windows
关注(0)|答案(1)|浏览(173)

我正在做一个项目,需要得到我的屏幕尺寸(我在windows上工作)。我只是业余的python和工作与它的乐趣和大学的作品。
下面是我的第一个任意维度的代码:

  1. from tkinter import *
  2. import random as rd
  3. import numpy as np
  4. import time
  5. class game :
  6. def __init__(self):
  7. self.screen = Tk()
  8. #screen size
  9. self.screen.geometry("900x500")
  10. #the rest is not essential to understand my problem
  11. self.screen.mainloop()
  12. game()

字符串
我第一次尝试我在youtube上看到的东西,但缺少一个模块,所以我在stackoverflow上搜索并写道:

  1. #begin : creation of an str of window dim
  2. #step 0 creation of "window"
  3. self.window = Gtk.Window()
  4. #step 1 obtention screen dim
  5. self.dim = window.get_screen()
  6. #step 2 obtention of height and length
  7. self.h = self.dim.height
  8. self.l = self.dim.length
  9. #step 3 str
  10. self.strdim = str(l) + "x" + str(h)
  11. #end


self.window = Gtk.Window()部分对我来说是未知的,因为我真的不知道Gtk代表什么(我猜它是一个别名),当我搜索它时,我只找到了C语言中的一个功能,但没有python模块。
谢谢你们的回答和帮助。

nwnhqdif

nwnhqdif1#

你可以使用这个:
width = root.winfo_screenwidth() height = root.winfo_screenheight()这将提供您正在使用的屏幕的总尺寸。
希望这对你有帮助!

相关问题