在Entry已经构造完毕了,我们后面需要修改的它的参数是可以调用:configure()
实例:
import tkinter as tk # 导入tkinter模块
# 单行输入框学习
e = tk.Entry(root, width=15) # 注意,输入框就是单行文本,它是没有height属性的
# 设置位置
e.place(x=270, y=170, width=80, height=30)
# 实现删除输入框的所有内容
e.delete(0, "end")
# 设置默认文本
e.insert(0, "默认文本hhhhhhh.")
e.configure(fg='red') # 修改字体颜色,修改其它参数只需要传入对应的参数即可
e.configure(state='readonly') # 改为只读