我有一个文字区域。我必须在python中使用Tkinter获取文本区域的内容。
self.outputText = Text(self)
self.outputText.place(relx = 0, rely = 0.15, relwidth = 1, relheight = 0.7)
self.outputText.insert(index = INSERT, chars = textParam)
答案 0 :(得分:0)
从文本小部件中获取数据的方法是使用get
方法。 Tkinter始终保证数据以换行符结束,因此要准确获取用户输入的内容,而不是小部件中的字符,否则您将自动插入换行符。例如:
self.outputText.get("1.0", "end-1c")