gpt4 book ai didi

python - Tkinter:如何使按钮居中?

转载 作者:行者123 更新时间:2023-11-28 19:48:36 34 4
gpt4 key购买 nike

我正在用 Python 编写一个程序,我想使用中间有一堆按钮的布局。如何使用 pack() 使按钮居中?

最佳答案

要水平居中,这应该足够了

button.pack(side=TOP)

但要水平和垂直居中,您可以使用嵌套框架。检查以下脚本:

import tkinter as tk

#%% Frames
frameA = tk.Frame(background="#c8c8c8")
frameB = tk.Frame(width=200, height = 200, background="#646464")
# Nested Frame. framebb is created within frameB without width or height
framebb = tk.Frame(frameB, background="#646464")
frameC = tk.Frame(width=100, height = 100, background="bisque")

frameA.pack(side='top', fill=None)
frameB.pack(side='top')
# expand is the key parameter to center the framebb within frameB
framebb.pack(expand=True)
frameC.pack(side='bottom')

#frameA.pack_propagate(False)
frameB.pack_propagate(False)
frameC.pack_propagate(False)

#%% Buttons and Labels
tk.Label(frameA, text = "Text within the frame A").pack()

a = tk.Button(framebb, text = "A").pack()
b = tk.Button(framebb, text = "B").pack()
c = tk.Button(framebb, text = "C").pack()
d = tk.Button(frameC, text = "D").pack()
e = tk.Button(frameC, text = "E").pack()

tk.mainloop()

script_with_center_buttons

另一种方法是使用 .grid() 方法

button.grid(row=1,col=0)

row=1,col=0 的值取决于窗口中其他小部件的位置

或者您可以使用 .place(relx=0.5, rely=0.5, anchor=CENTER)

button.place(relx=0.5, rely=0.5, anchor=CENTER)

请注意,参数 anchor 引用了对象(在本例中为按钮)的相对位置。 anchor 未引用窗口中的位置。您可以认为按钮是一艘有多个 anchor 的船,因此您应该选择一个坐标以及要在该坐标中固定哪个 anchor 。

使用 .place() 的例子:

from tkinter import *  # Use this if use python 3.xx
#from Tkinter import * # Use this if use python 2.xx
a = Button(text="Center Button")
b = Button(text="Top Left Button")
c = Button(text="Bottom Right Button")

# You can use the strings the referencing the relative position on the button
# strings = n, ne, e, se, s, sw, w, nw, c or center
# Or you can use the constants of tkinter
# N, NE, E, SE, S, SW, W, NW, CENTER
a.place(relx=0.5, rely=0.5, anchor=CENTER)
b.place(relx=0.0, rely=0.0, anchor=NW)
c.place(relx=1.0, rely=1.0, anchor=SE)
mainloop()

tk window

关于python - Tkinter:如何使按钮居中?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31128780/

34 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com