如何使用python在tkinter中创建一个文本输入窗口小部件? 我正在使用的代码:
from tkinter import *
from PIL import ImageTk, Image
import os
root = Tk()
root.title('Title')
E1 = Entry(root, bd = 5,show='*') # tried this line of code but it didn't worked
img = ImageTk.PhotoImage(Image.open("path/to/image.png"))
panel = Label(root, image = img)
panel.pack(side = "bottom", fill = "both", expand = "yes")
c = Button(text=" OK ")
c.place(relx=0.95, rely=0.98, anchor=SE)
root.mainloop()
它可以创建一个按钮(确定),为什么它不能创建输入文本小部件?
答案 0 :(得分:3)
您忘了打包 条目字段,只需尝试以下内容:
E1 = Entry(root, bd = 5,show='*')
E1.pack(side=BOTTOM, fill=BOTH, expand=YES)
根据您的喜好自定义位置和行为。