按钮不显示在框架中
Button doesn't show in the frame
我创建了几个框架,现在想在它们上面放置一些按钮和标签,但是从我创建的第一个按钮开始,我就遇到了问题。 tkinter window.
中没有显示任何内容
from tkinter import *
class STproject():
def __init__(self,app): #1
self.stframe=Frame(app,background='blue',height=90,width=350)
self.stframe.grid(row=0,column=0)
self.ndframe=Frame(app,background='red',height=90,width=350)
self.ndframe.grid(row=1,column=0)
self.rdframe=Frame(app,background='yellow',height=90,width=350)
self.rdframe.grid(row=2,column=0)
self.ndstframe=Frame(self.ndframe,background='black',width=145)
self.ndstframe.grid(row=0,column=0,rowspan=3,sticky='ns')
self.ndndframe=Frame(self.ndframe,background='white',height=45,width=205)
self.ndndframe.grid(row=1,column=1)
self.ndrdframe=Frame(self.ndframe,background='green',height=45,width=205)
self.ndrdframe.grid(row=2,column=1)
def buttons(self):
self.importbutton=Button(self.stframe,text='Import',width=4,height=2)
self.importbutton.grid(row=0,column=0)
root=Tk()
root.title('SteelBox Inc. Calculator')
application=STproject(root) #2
root.mainloop() #3
您已将按钮的创建放在一个单独的函数中,但您从未调用它。
在 __init__
末尾添加 self.buttons()
按钮将出现。
我创建了几个框架,现在想在它们上面放置一些按钮和标签,但是从我创建的第一个按钮开始,我就遇到了问题。 tkinter window.
中没有显示任何内容from tkinter import *
class STproject():
def __init__(self,app): #1
self.stframe=Frame(app,background='blue',height=90,width=350)
self.stframe.grid(row=0,column=0)
self.ndframe=Frame(app,background='red',height=90,width=350)
self.ndframe.grid(row=1,column=0)
self.rdframe=Frame(app,background='yellow',height=90,width=350)
self.rdframe.grid(row=2,column=0)
self.ndstframe=Frame(self.ndframe,background='black',width=145)
self.ndstframe.grid(row=0,column=0,rowspan=3,sticky='ns')
self.ndndframe=Frame(self.ndframe,background='white',height=45,width=205)
self.ndndframe.grid(row=1,column=1)
self.ndrdframe=Frame(self.ndframe,background='green',height=45,width=205)
self.ndrdframe.grid(row=2,column=1)
def buttons(self):
self.importbutton=Button(self.stframe,text='Import',width=4,height=2)
self.importbutton.grid(row=0,column=0)
root=Tk()
root.title('SteelBox Inc. Calculator')
application=STproject(root) #2
root.mainloop() #3
您已将按钮的创建放在一个单独的函数中,但您从未调用它。
在 __init__
末尾添加 self.buttons()
按钮将出现。