gpt4 book ai didi

python - 将 tkinter 中的表格居中

转载 作者:行者123 更新时间:2023-12-01 08:46:03 31 4
gpt4 key购买 nike

我正在使用 tkinter :) 并尝试将“StackQuestion”表居中。

我不知道接收容器内的表格水平居中和/或垂直居中的选项是什么。

第一个类 StackQuestion 定义了一般窗口如何工作以及如何在容器之间切换。第二,定义表格及其内容。

我尝试向不同的容器添加不同的颜色,以检查哪个容器处于事件状态,并尝试将其中的所有内容居中,但没有取得太大成功。

编辑:为了不在这里有大量代码,我删除了所有其他类并在“for F in (Test, Test):”中复制“Test”,以便代码在您的计算机上运行。

table to center

#utf8
#python3
import tkinter as tk
from tkinter import *
from tkinter import ttk


class StackQuestion(tk.Tk):

def __init__(self, *args, **kwargs):

tk.Tk.__init__(self, *args, **kwargs)
container = ttk.Frame(self)

container.grid()

#windows resize management
container.grid_rowconfigure(0, weight=1)
container.grid_columnconfigure(0, weight=1)

self.frames = {}
for F in (Test, Test):
frame = F(container, self)
self.frames[F] = frame
frame.grid(row=1, column=1, sticky='nsew')

self.show_frame(Test)

def show_frame(self, cont):

frame = self.frames[cont]
frame.tkraise()


class Test(tk.Frame):

def __init__(self, parent, controller):

tk.Frame.__init__(self, parent)


label = tk.Label(self, text = 'StackQuestion')
label.grid(row=0, column=0, columnspan=2)

questions = ['Question 1', 'Question 2' , 'Question 3']
row_number = 1
column_number = 0

Tree = ttk.Treeview(self, show ='headings')
Tree['columns'] = ('Author', 'Subject', 'Date', 'Question')
Tree.heading('Author', text = 'Author')
Tree.heading('Subject', text = 'Subject')
Tree.heading('Date', text = 'Date')
Tree.heading('Question', text = 'Question')



for value in questions :
Tree.insert('', 'end', value, text = value)
Tree.set(value, 'Author', value)


Tree.grid()


app = StackQuestion()
app.geometry('1080x700')
app.configure(background='grey')
app.mainloop()

最佳答案

我不是一个专家级的Python程序员,事实上我还是一个新手,我也在不断地学习。所以我按照 toti08 的提示找到了这个“noob-fix”

你可以改变

 container.grid()

与:

container.pack(pady=50)

这会将其水平居中,并为表格提供一些顶部填充,这样您也可以将其垂直居中,或者至少在边框上留出一点边距。

希望这会有所帮助,直到更有经验的人来解决您的问题:)

关于python - 将 tkinter 中的表格居中,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/53298559/

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