ttk添加新选项卡时调整笔记本选项卡的大小



我正在使用Tkinter开发一个应用程序(这是第一次,请耐心等待(。它将在顶部有3个不同的选项卡,每个选项卡都包含多个小部件等,这些小部件都使用网格放置。我面临的问题是,当我试图将小部件添加到第三个选项卡时。前两个选项卡的布局完全符合我的要求,但当我开始添加到第二个选项卡时,所有内容似乎都会调整大小并"缩小"。

在我下面添加的一小段代码中,当在没有选项卡3的情况下运行时,框架的大小正是我想要的,其中所有内容都非常适合选项卡1和2。然而,当我去取消注释选项卡3并再次运行它时,你可以看到整个东西都缩小了,这使得前两个选项卡看起来都不稳定。

我尝试过使用grid_columnconfigure(0,weight=1(将列权重添加到f1、f2和f3,但似乎没有帮助。我还试着把我的整个布局切换到内部框架和包装,但它似乎不能很好地处理我想要的布局。

我确信这可能是一个角落的问题,但我的头撞到了墙上。

谢谢!

import tkinter as tk
import tkinter.ttk as ttk
from tkinter.ttk import Notebook
import datetime
# ~~~~~~~~~~~~~~~~~~ CREATE MAIN WINDOW AND WIDGET STYLES ~~~~~~~~~~~~~~~~~~~~
root = tk.Tk()
style = ttk.Style()
style.theme_use('clam')
root.title('Test')
root.geometry('1250x1000')
root.configure(background='yellow')
## Create a custom style for the tabs
# custom_style = ttk.Style()
# custom_style.configure('Custom.TNotebook.Tab', padding=[30,4])
tab = Notebook(root, style='Custom.TNotebook')

# ~~~~~~~~~~~~~~~~~~ CREATE & STYLE NOTEBOOK (TABS) ~~~~~~~~~~~~~~~~~~~~
## Create a frame (sub window) for each tab
f1 = tk.Frame(tab, width=700, height=700)
f2 = tk.Frame(tab, width=700, height=700)
f3 = tk.Frame(tab, width=700, height=700)
## Link the tabs to each frame
tab.add(f1, text='Tab 1')
tab.add(f2, text='Tab 2')
tab.add(f3, text='Tab 3')
## Place the Notebook (tabs) on the main window
tab.pack(fill='y')

# ~~~~~~~~~~~~~~~~~~ TAB 1 ~~~~~~~~~~~~~~~~~~~~
## Associate variables with each entry field and fill default with todays info
current_date = datetime.datetime.now()
date_var_one = tk.StringVar(value = current_date.strftime('%D'))
## Create Label and Entry Widgets
label_date = tk.ttk.Label(f1, text = 'Enter Date (MM/DD/YY): ', width = 18)
## Place Widgets on Frame (F1: Income Tab)
label_date.grid(row=0, column=0, sticky='w', pady=2)

# ~~~~~~~~~~~~~~~~~~ TAB 2 ~~~~~~~~~~~~~~~~~~~~
## Create Label and Entry Widgets
label_date_two = ttk.Label(f2,text = 'Enter Date (MM/DD/YY): ', width = 18)
## Place Widgets on Frame (F2: Expense Tab)
label_date_two.grid(row=0, column=0, sticky='w', pady=2)

# ~~~~~~~~~~~~~~~~~~ TAB 3 ~~~~~~~~~~~~~~~~~~~~
# ## Create Label and Entry widgets
# label_current = ttk.Label(f3, text = 'Enter current month (MM):',width= 18)
# ## Place Widgets on Frame (F3: Analysis Tab)
# label_current.grid(row=0, column=0)

# ~~~~~~~~~~~~~~~~~~ LOOP TO KEEP APP RUNNING ~~~~~~~~~~~~~~~~~~~~
root.mainloop()

问题不在于第三个选项卡,而是所有选项卡都分配了小部件,并且重新计算了它们的高度。

尝试将尺寸直接分配给记事本:

tab = Notebook(root, style='Custom.TNotebook', width=700, height=700)

相关内容

  • 没有找到相关文章

最新更新