如何在按钮中创建图像。我希望文本不是画笔的图片,而不是说“绘图”的文字。
代码:
self.draw_button = Button(self.root, text='Draw', command=self.use_draw)
self.draw_button.grid(row=0, column=2)
答案 0 :(得分:2)
使用tkinter的PhotoImage
创建图像,然后将其设置在Button中。
from tkinter import *
root = Tk()
img = PhotoImage(file='paint_brush.png')
draw_button = Button(root, image=img)
draw_button.grid(row=0, column=0)
root.mainloop()