创建一个自动最大化的 tkinter 窗口

我们可以通过两种不同的方式在 Tkinter 中获得自动最大化的窗口。

  • 我们可以使用 Tkinter 的方法并使用属性"zoomed"state()调用它。

root.state("zoomed")

  • 第二种方法是使用带有参数“-fullscreen”的 Tkinter 的attributes方法并将其设置为True。

默认情况下,Tkinter 创建一个预定义大小的窗口。可以使用几何方法自定义窗口的尺寸。例如,

root.geometry("700 x 350")

示例 1

# Import the required libraries

from tkinter import *

# Create an instance of tkinter frame

root=Tk()

# Create a label

Label(root, text="Welcome to Nhooo", font="Calibri, 20").pack(pady=20)

# Maximize the window Size using state property

root.state('zoomed')

root.mainloop()

输出结果

它将产生以下输出 -

示例 2

现在,让我们调整代码并使用属性方法而不是状态方法。

# Import the required libraries

from tkinter import *

# Create an instance of tkinter frame

root=Tk()

# Create a label

Label(root, text="Welcome to Nhooo", font="Calibri, 20").pack(pady=20)

# Maximize the window Size using attributes method

root.attributes('-fullscreen', True)

root.mainloop()

输出结果

它将产生以下输出 -

以上是 创建一个自动最大化的 tkinter 窗口 的全部内容, 来源链接: utcz.com/z/363305.html

回到顶部