0

我使用 Pythoncard 在我的 python 项目中创建了一个 textarea

问题是,我不知道如何在我的项目中调用它来更改文本。它被称为 myTextArea。

谢谢

4

2 回答 2

0

在此处查看 TextArea 文档:http: //pythoncard.sourceforge.net/framework/components/TextArea.html

我认为您要使用的方法是 appendText 和 writeText

于 2010-01-14T17:08:57.480 回答
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
于 2010-08-25T18:18:11.203 回答