python tkinter frame 隐藏_Tkinter frame未显示

我正在用TKinter在python上制作这个网球GUI程序。

下面代码的当前错误是'self.title_框架'甚至不会出现在第0行的GUI上。它完全消失了。是什么导致了这个问题?在

此外,没有实际的错误消息。只是顶部框架的问题(self.title_框架)未在第0行显示。事实上,它不仅不会出现,而且位于第0行的标签也不会出现(self.title_标签)将显示在第0行,但下面没有框架。在from tkinter import *

#*||Variables||*

#Stylistic Variables:

active_BG = 'DarkGreen' #active background color

active_FG = 'white' #active foreground color

main_font = 'SimSun 30 bold' #main font, size and style

sub_font = 'SimSun 20 bold' #sub font, size and style

sub_font2 = 'SimSun 11 bold' #sub font 2, size and style

sub_font3 = 'SimSun 10'

bg_1 = 'MediumSeaGreen' #background color 1

bg_2 = 'palegreen' #background color 2

bg_3 = 'SeaGreen' #background color 3

fg_1 = 'DarkGreen' #foreground color 1

fg_2 = 'LightCyan' #foreground color 2

hand_cursor = 'hand2' #button hover cursor

raised_relief = 'raised' #relief style 1 (raised)

groove_relief = 'groove' #relief style 2 (groove)

#Game Variables

#STUFF...

#*||Functions||*

class tenalyzer_V1:

def __init__(self, root):

self.root = root

self.title_frame = Frame(self.root)

self.title_frame.grid(row=0)

self.title_frame.config(bg=bg_1, width=520, height=100)

self.title_label = Label(self.title_frame)

self.title_label.grid(row=0)

self.title_label.config(text='Tenalyzer v1.0', bg=bg_1, fg=fg_2, font=main_font, width='17', bd=10, relief=groove_relief)

self.start_frame = Frame(self.root, bg=bg_3, width=520, height=100).grid(row=1)

self.start_label = Button(self.start_frame)

self.start_label.grid(row=1)

self.start_label.config(text='START', bg=bg_2, activebackground=active_BG , fg=fg_1, activeforeground=active_FG, font=sub_font, width=14, bd=5, relief=raised_relief, cursor=hand_cursor, command=self.start_page)

self.instructions_frame = Frame(self.root, bg=bg_1, width=520, height=100).grid(row=2)

self.instructions_btn = Button(self.instructions_frame)

self.instructions_btn.grid(row=2)

self.instructions_btn.config(text='INSTRUCTIONS', bg=bg_2, activebackground=active_BG , fg=fg_1, activeforeground=active_FG, font=sub_font, width=14, bd=5, relief=raised_relief, cursor=hand_cursor, command=self.instructions_page)

self.credit_frame = Frame(self.root, bg=bg_3, width=520, height=100).grid(row=3)

self.credit_btn = Button(self.credit_frame)

self.credit_btn.grid(row=3)

self.credit_btn.config(text='CREDITS', bg=bg_2, activebackground=active_BG , fg=fg_1, activeforeground=active_FG, font=sub_font, width=14, bd=5, relief=raised_relief, cursor=hand_cursor, command=self.credits_page)

self.return_frame = Frame(self.root, bg=bg_1, width=520, height=40).grid(row=4)

self.return_btn = Button(self.return_frame)

self.return_btn.grid(row=4)

self.return_btn.config(text='Exit', bg=bg_2, activebackground=active_BG , fg=fg_1, activeforeground=active_FG, font=sub_font2, width=16, bd=5, relief=raised_relief, cursor=hand_cursor, command=self.exit_command)

def exit_command(self):

root.destroy()

def title_page(self):

self.title_label.grid(row=0)

self.start_label.grid(row=1)

self.instructions_btn.grid(row=2)

self.credit_btn.grid(row=3)

self.title_label.config(text='Tenalyzer v1.0')

self.return_btn.config(text='Exit', command=self.exit_command)

def start_page(self):

print('started')

def instructions_page(self):

print('instructions page')

def credits_page(self):

print('credits page')

self.title_label.config(text='Credits:')

self.return_btn.config(text='Go Back', command=self.title_page)

#*||Main Program||*

root = Tk()

root.title('Tenalyzer v1.0')

root.resizable(width=FALSE, height=FALSE)

root.geometry('{}x{}'.format(520, 440))

keyword = tenalyzer_V1(root)

root.mainloop()

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值