【发布时间】:2012-06-04 20:18:52
【问题描述】:
我正在尝试创建一个带有黑色背景的根窗口以与我的按钮背景混合。
我有以下几点:
class Application(Frame):
def __init__(self, parent):
Frame.__init__(self, parent)
self.parent = parent
self.initUI()
...
def initUI(self):
self.outputBox = Text(bg='black', fg='green', relief=SUNKEN, yscrollcommand='TRUE')
self.outputBox.pack(fill='both', expand=True)
self.button1 = Button(self, text='button1', width=40, bg ='black', fg='green', activebackground='black', activeforeground='green')
self.button1.pack(side=RIGHT, padx=5, pady=5)
self.button2 = Button(self, text='button2', width=20, bg='black', fg='green', activebackground='black', activeforeground='green')
self.button2.pack(side=LEFT, padx=5, pady=5)
...
def main():
root = Tk()
root.geometry('1100x350+500+300')
root.configure(background = 'black')
app = Application(root)
root.mainloop()
但是root.configure(background = 'black') 没有改变根窗口的背景颜色...有什么建议吗?
【问题讨论】:
-
嗯,你确定这是问题所在吗?
root.configure(background='black')在我的电脑上运行良好。
标签: python window tkinter root configure