0
我有一個文本區域。我必須在Python中使用Tkinter來獲取文本區域的內容。獲取python中的textarea內容
self.outputText = Text(self)
self.outputText.place(relx = 0, rely = 0.15, relwidth = 1, relheight = 0.7)
self.outputText.insert(index = INSERT, chars = textParam)
也許[get](http://effbot.org/tkinterbook/text.htm#Tkinter.Text.get-method)方法可以幫助您到達那裏。 – Kevin
@Kevin:我用self.outputText.get(1.0,END),但它不起作用 –
你是什麼意思的「不工作」? – Kevin