我使用Pythoncard在我的python项目中创建了一个textarea
问题是,我不知道如何在我的项目中调用它来更改文本。它叫做myTextArea。
由于
答案 0 :(得分:0)
请在此处查看TextArea文档:http://pythoncard.sourceforge.net/framework/components/TextArea.html
我认为你想要使用的方法是appendText和writeText
答案 1 :(得分:0)
从PythonCard生成的GUI类中:
self.components.myTextArea.clear() ## clear the TextArea
self.components.myTextArea.text = "initial text" ## directly set text
self.components.myTextArea.appendText("\nhello world") ## append text
self.components.myTextArea.writeText("\nhello world2") ## append text