怎么才能拿到Tkinter的屏幕尺寸呢?

2022-02-21 00:00:00 python tkinter

问题描述

我想知道是否可以使用Tkinter计算屏幕大小。

我想要这样可以使程序在屏幕中央打开.


解决方案

import tkinter as tk

root = tk.Tk()

screen_width = root.winfo_screenwidth()
screen_height = root.winfo_screenheight()

相关文章