Код: Выделить всё
import tkinter as tk
def main():
global root, button
root = tk.Tk()
pixel = tk.PhotoImage(width=1, height=1)
button = tk.Button(root, text="Hmm",
image=pixel,
compound="c")
button.pack()
main()
root.mainloop()
Код: Выделить всё
enter
Подробнее здесь: https://stackoverflow.com/questions/794 ... t-disabled