Button Background and foreground : Back Fore ground « GUI Tk « Python






Button Background and foreground

Button Background and foreground

from Tkinter import *

class Java2sButton(Frame):
    def __init__(self):              
        Frame.__init__(self)
        self.pack()
        stopper = Button(self, text='Text', command=self.quit)
        stopper.pack()
        stopper.config(bg='navy', fg='white', bd=8) 

if __name__ == '__main__': 
    Java2sButton().mainloop()

           
       








Related examples in the same category