如何在 Tkinter 中更改标题栏?
Tkinter 最初为每个应用程序设置了一个默认标题栏。我们可以通过配置 title("输入任意标题") 方法来更新或替换 Tkinter 应用程序的标题栏。对于特定的应用程序,让我们看看如何更改计算数字平方的 Tkinter 应用程序的标题。
示例
#Import the required Libraries from tkinter import * from tkinter import ttk import math #Create an instance of Tkinter frame win = Tk() #Set the geometry of tkinter frame win.geometry("750x270") #Set the Title of Tkinter window win.title("Square Calculator") def find_square(): no= int(entry.get()) Label(win, text=no*no).pack() #Create an entry widget to accept user input entry= Entry(win, width=40) entry.pack(ipadx= 20,pady=20) #Create a button to calculate the number ttk.Button(win, text= "Calculate", command= find_square).pack() win.mainloop()
输出
上述程序计算条目小部件中给定数字的平方。因此,程序窗口标题已重命名为“平方计算器”。
广告