Python 3.x Ttk帧,背景色

Python 3.x Ttk帧,背景色,python-3.x,tkinter,macos-sierra,ttk,Python 3.x,Tkinter,Macos Sierra,Ttk,我正在使用ttk作为我的GUI。我知道这也是一个非常简单的问题。。。我正在尝试更改主窗口的背景色。 我试图改变主题,因为我正在Mac(和Python 3.5)上工作,以避免主题“aqua”的问题,这是默认的。我已经阅读了一些类似于这些问题的解决方案,它们都是关于相同的问题。。。以下是问题的编号: 54476511, 38712352, 47327266, 23750141 但是,我还没有解决这个问题。 这是我的密码 #!/usr/bin/env python # -*- coding: utf

我正在使用ttk作为我的GUI。我知道这也是一个非常简单的问题。。。我正在尝试更改主窗口的背景色。 我试图改变主题,因为我正在Mac(和Python 3.5)上工作,以避免主题“aqua”的问题,这是默认的。我已经阅读了一些类似于这些问题的解决方案,它们都是关于相同的问题。。。以下是问题的编号:

54476511, 38712352, 47327266, 23750141

但是,我还没有解决这个问题。 这是我的密码

#!/usr/bin/env python

# -*- coding: utf-8 -*-



from tkinter.scrolledtext import *

from tkinter import Tk, BOTH, W, N, E, S, messagebox, END

from tkinter.ttk import Button, Label, Style, Frame



class Example(Frame):


    def __init__(self,master):

        super().__init__()

        self.initUI()


    def initUI(self):

        self.master.title("Example")

        Style().theme_use("classic")

        self.pack(fill=BOTH, expand=1)


        self.columnconfigure(1, weight=1)

        self.columnconfigure(3, pad=7)

        self.rowconfigure(3, weight=1)

        self.rowconfigure(5, pad=7)


        self.txt_Pad = ScrolledText(self)

        self.txt_Pad.grid(row=1, column=0, columnspan=2, rowspan=4, padx=5, sticky=E+W+S+N)

        self.txt_Pad.insert(END,'Type your info here')


        btn_save = Button(self, text="Save", command=self.save_command)

        btn_save.grid(row=1, column=3)


        btn_close = Button(self, text="Close", command=self.onClose)

        btn_close.grid(row=2, column=3, pady=4)


        btn_help = Button(self, text="Help", command=self.about_command)

        btn_help.grid(row=5, column=0, padx=5)        


    def onClose(self):

        self.master.destroy()


    def about_command(self):

        msb = messagebox.showinfo("About", "\"Insert a useful tip Here\"")


    def save_command(self):

        print('Your info it\'s save now')


    def open_command(self):

        print('Choose your File')



def main():

    root = Tk()

    root.geometry("350x300+300+300")

    root.configure(bg='#0059b3')

    app = Example(root)

    root.mainloop()




if __name__ == '__main__':

    main() 

任何建议都将不胜感激。

创建一种风格,然后应用它

from tkinter.scrolledtext import *

from tkinter import Tk, BOTH, W, N, E, S, messagebox, END

from tkinter.ttk import Button, Label, Style, Frame



class Example(Frame):


    def __init__(self, master):

        super().__init__()

        self.initUI()


    def initUI(self):

        self.master.title("Example")

        # create a new style
        self.style = Style()
        # configure it to the background you want
        self.style.configure('My.TFrame', background='#0059b3')
        #Style().theme_use("classic")
        # apply it
        self.config(style='My.TFrame')

        self.pack(fill=BOTH, expand=1)


        self.columnconfigure(1, weight=1)

        self.columnconfigure(3, pad=7)

        self.rowconfigure(3, weight=1)

        self.rowconfigure(5, pad=7)


        self.txt_Pad = ScrolledText(self)

        self.txt_Pad.grid(row=1, column=0, columnspan=2, rowspan=4, padx=5, sticky=E+W+S+N)

        self.txt_Pad.insert(END,'Type your info here')


        btn_save = Button(self, text="Save", command=self.save_command)

        btn_save.grid(row=1, column=3)


        btn_close = Button(self, text="Close", command=self.onClose)

        btn_close.grid(row=2, column=3, pady=4)


        btn_help = Button(self, text="Help", command=self.about_command)

        btn_help.grid(row=5, column=0, padx=5)        


    def onClose(self):

        self.master.destroy()


    def about_command(self):

        msb = messagebox.showinfo("About", "\"Insert a useful tip Here\"")


    def save_command(self):

        print('Your info it\'s save now')


    def open_command(self):

        print('Choose your File')



def main():

    root = Tk()

    root.geometry("350x300+300+300")

    root.configure(background='#0059b3')

    app = Example(root)

    root.mainloop()




if __name__ == '__main__':

    main() 


我在我更改的部分留下了注释。

创建一个样式,然后应用它

from tkinter.scrolledtext import *

from tkinter import Tk, BOTH, W, N, E, S, messagebox, END

from tkinter.ttk import Button, Label, Style, Frame



class Example(Frame):


    def __init__(self, master):

        super().__init__()

        self.initUI()


    def initUI(self):

        self.master.title("Example")

        # create a new style
        self.style = Style()
        # configure it to the background you want
        self.style.configure('My.TFrame', background='#0059b3')
        #Style().theme_use("classic")
        # apply it
        self.config(style='My.TFrame')

        self.pack(fill=BOTH, expand=1)


        self.columnconfigure(1, weight=1)

        self.columnconfigure(3, pad=7)

        self.rowconfigure(3, weight=1)

        self.rowconfigure(5, pad=7)


        self.txt_Pad = ScrolledText(self)

        self.txt_Pad.grid(row=1, column=0, columnspan=2, rowspan=4, padx=5, sticky=E+W+S+N)

        self.txt_Pad.insert(END,'Type your info here')


        btn_save = Button(self, text="Save", command=self.save_command)

        btn_save.grid(row=1, column=3)


        btn_close = Button(self, text="Close", command=self.onClose)

        btn_close.grid(row=2, column=3, pady=4)


        btn_help = Button(self, text="Help", command=self.about_command)

        btn_help.grid(row=5, column=0, padx=5)        


    def onClose(self):

        self.master.destroy()


    def about_command(self):

        msb = messagebox.showinfo("About", "\"Insert a useful tip Here\"")


    def save_command(self):

        print('Your info it\'s save now')


    def open_command(self):

        print('Choose your File')



def main():

    root = Tk()

    root.geometry("350x300+300+300")

    root.configure(background='#0059b3')

    app = Example(root)

    root.mainloop()




if __name__ == '__main__':

    main() 


我在我更改的部分留下了评论。

不清楚你在问什么。你有错误吗?是不是设置了错误的颜色?代码在做什么,它与您期望的有何不同?另外,如果问题是关于根窗口的背景颜色,那么我们不需要示例中的任何其他小部件。不清楚您在问什么。你有错误吗?是不是设置了错误的颜色?代码在做什么,它与您期望的有何不同?另外,如果问题是关于根窗口的背景颜色,我们不需要示例中的任何其他小部件。thnx@Axe319,您的答案是正确的,我只在您的答案中更改一行。thnx@Axe319,您的答案是正确的,我只在您的答案中更改一行。