我使用 Pythoncard 在我的 python 项目中创建了一个 textarea
问题是,我不知道如何在我的项目中调用它来更改文本。它被称为 myTextArea。
谢谢
我使用 Pythoncard 在我的 python 项目中创建了一个 textarea
问题是,我不知道如何在我的项目中调用它来更改文本。它被称为 myTextArea。
谢谢
在此处查看 TextArea 文档:http: //pythoncard.sourceforge.net/framework/components/TextArea.html
我认为您要使用的方法是 appendText 和 writeText
在 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