Tkinter:如何使窗口标题居中

时间:2016-07-14 11:58:32

标签: python tkinter title centering

我正在使用tkinter创建一个项目,当我创建一个窗口时,我似乎无法让窗口标题居中(就像现在的大多数程序一样)。这是示例代码:

from tkinter import *

root = Tk()
root.title("Window Title".center(110))# Doesn't seem to work

root.mainloop()

有没有办法让窗口标题居中?提前致谢

4 个答案:

答案 0 :(得分:1)

你无能为力。除了指定文本之外,Tkinter无法控制窗口管理器或操作系统如何显示窗口的标题。

答案 1 :(得分:0)

我提出了一个完成工作的技巧,它只需在标题之前添加尽可能多的空格:

import tkinter as tk

root = tk.Tk()
root.title("                                                                          Window Title")# Add the blank space
frame = tk.Frame(root, width=800, height=200, bg='yellow')
frame.grid(row=0,column=0)

root.mainloop()

<强>输出:

enter image description here

或者,您可以使用由空格组成的字符串,并在乘法后将其连接到标题。我的意思是:

import tkinter as tk

root = tk.Tk()
blank_space =" " # One empty space
root.title(80*blank_space+"Window Title")# Easier to add the blank space 
frame = tk.Frame(root, width=800, height=200, bg='yellow')
frame.grid(row=0,column=0)

root.mainloop()

答案 2 :(得分:0)

更多添加到Billal建议的是这个示例根据窗口大小进行调整。我仍然不会推荐它,因为它只是视觉美学的黑客,但如果你真的想拥有它。

import tkinter as tk

def center(e):
    w = int(root.winfo_width() / 3.5) # get root width and scale it ( in pixels )
    s = 'Hello Word'.rjust(w//2)
    root.title(s)

root = tk.Tk()
root.bind("<Configure>", center) # called when window resized
root.mainloop()

答案 3 :(得分:0)

width=root.winfo_screenwidth()
spacer=(" "*(int(width)//6))
root.title(spacer+"Your title")

这还不是很完美,但是会起作用。