如何将数据从一个Tkinter Text小部件复制到另一个?

时间:2010-02-13 15:41:59

标签: python tkinter

from Tkinter import *

root = Tk()
root.title("Whois Tool")

text = Text()
text1 = Text()

text1.config(width=15, height=1)
text1.pack()

def button1():
    text.insert(END, text1)

b = Button(root, text="Enter", width=10, height=2, command=button1)
b.pack()

scrollbar = Scrollbar(root)
scrollbar.pack(side=RIGHT, fill=Y)
text.config(width=60, height=15)
text.pack(side=LEFT, fill=Y)
scrollbar.config(command=text.yview)
text.config(yscrollcommand=scrollbar.set)

root.mainloop()

如何将文本小部件中的数据添加到另一个文本小部件?

例如,我正在尝试将数据插入text1text,但它无效。

1 个答案:

答案 0 :(得分:4)

您正试图在另一个Text窗口小部件的末尾插入Text引用(没有多大意义),但您实际想要做的是复制{{{{}}的内容1}} widget到另一个:

Text

在我看来,这不是一种直观的方式。 def button1(): text.insert(INSERT, text1.get("1.0", "end-1c")) 表示行"1.0",列1。是的,这些行是1索引的,列是0索引的。


请注意,您可能不想使用0导入整个Tkinter包。它可能会导致混乱。我建议使用:

from Tkinter import *

另一种选择是:

import Tkinter
text = Tkinter.Text()

您可以选择自己喜欢的简称(如import Tkinter as tk text = tk.Text() )。无论如何,您应该坚持使用库的一种导入机制。