Gelöscht_25272 Posted January 6, 2021 Share Posted January 6, 2021 Zitat check_button = Style() Style.configure("D.TButton", backgound="black") check_button = Button(Tool, text="Check Hardware", command=action, cursor="hand2", style="D.TButton") check_button.place(x=0, y=0, width=100, height=100) Ich finde nur grausame Anleitungen zu etwas, das eigentlich komplett einfach sein soll... Link to comment Share on other sites More sharing options...
Blockfarm Posted February 11, 2021 Share Posted February 11, 2021 Hallo, das kommt ganz darauf an welche Art von Button du benutzt. Ist es tk oder ttk? Bei tk Buttons geht es deutlich einfacher als bei ttk Buttons. Für tk wäre es in etwas so: Zitat import tkinter as tk root = tk.Tk() button = tk.Button(root, bg='Hintergrndfarbe', fg='Schriftfarbe', relief='flat', text='Text', Maße) Bei ttk Buttons muss zuerst der Status auf 'alt' gesetzt werden, damit etwas geändert werden kann. VG Blockfarm Link to comment Share on other sites More sharing options...
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now