tkinter同时使用图像与文本
compound: 指定文本(text)与图像(bitmap(内置图)/image(自定义图片)是如何在Label上显示,当指定image/bitmap时,会显示图像或自定义图片...left: 图像居左
right: 图像居右
top: 图像居上
bottom: 图像居下
center: 文件覆盖在图像上
bitmap/image : 显示在Label上的图像
text...: 显示在Label上的文本
示例:
from tkinter import *
root = Tk()
root.title('tkinter')
# 图像居下
label1 = Label(root..., fg='red', bg='blue', text='botton', compound='bottom', bitmap='error')
# 图像居上
label2 = Label(root,... fg='red', bg='yellow', text='top', compound='top', bitmap='error')
# 图像居右
label3 = Label(root, fg='