Pmw.RadioSelect的按钮是否有可能在文本旁边有一个图标?假设我们在Frame中添加了几个按钮,每个按钮在文本的左侧或右侧都有不同的图标。
答案 0 :(得分:1)
您可以通过执行以下操作将图像添加到RadioButton小部件:
from tkinter import *
root = Tk()
radiobtn = Radiobutton(root)
# Image location (add "/" not "\")
img = PhotoImage(file="C:/path to image/image.png")
# Applying image to the Radiobutton
radiobtn.config(image=img)
# Display Radiobutton
radiobtn.pack()
root.mainloop()
查看Radiobutton documentation了解详情。