- 论坛徽章:
- 0
|
不清楚你的那些entry的方法是从什么文档里看到的,还是凭空想象得到的?
entry的内容设置只要用insert就可以了
下面的代码供你参考 在第二个文本框里输入的内容可以通过按钮移动到第一个文本框的相应位置;或者通过按钮清空第一个文本框的内容- #!/usr/bin/python
- from Tkinter import *
- def app_text():
- text = e2.get()
- e1.insert(END, text)
- def ins_text():
- text = e2.get()
- e1.insert(0, text)
- def clr_text():
- e1.delete(0, END)
- root = Tk()
- e1 = Entry()
- e2 = Entry()
- b1 = Button(text = "Append Text", command = app_text)
- b2 = Button(text = "Insert Text", command = ins_text)
- b3 = Button(text = "Clear Text", command = clr_text)
- e1.pack(padx = 10, pady = 10, fill = X)
- e2.pack(padx = 10, pady = 10, fill = X)
- b1.pack(padx = 10, pady = 5)
- b2.pack(padx = 10, pady = 5)
- b3.pack(padx = 10, pady = 5)
- root.mainloop()
复制代码 |
|