我的应用程序中的背景有一个问题 - 我的文本不使用根背景。我的代码:
from tkinter import *
import os
import tkinter.scrolledtext as scrolledtext
DIR1= os.path.abspath(os.curdir) + "/"
root = Tk()
root.iconbitmap("1.ico")
root.geometry("600x700+690+100")
root.title("place() method")
root.title("Test")
font = PhotoImage(file=DIR1+'7.png')
label_1 = Label(root, image=font)
label_1.place(x=0, y=0)
label_1 = Label(text="""Hello world""", pady=10, font="Arial 14")
Output = scrolledtext.ScrolledText(root, height=20,
width=60,
bg="light cyan",
wrap=WORD)
Display_1 = Button(root,
height = 2,
width = 50,
text="Check DIR",
command=lambda: check_dir())
label_1.pack()
Display_1.pack(side=TOP, pady=(10,10))
Output.pack()
mainloop()
但结果有: 在此处输入图像描述
如何为文本设置我的图像=字体背景?我想让文本覆盖我的背景。我尝试通过选项“复合”,但它仅适用于“中心”位置......也许你可以帮助我。