0

Pythoncard を使用して、Python プロジェクトにテキストエリアを作成しました。

問題は、プロジェクトでそれを呼び出してテキストを変更する方法がわからないことです。これは myTextArea と呼ばれます。

ありがとう

4

2 に答える 2

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 に答える
0

ここで TextArea のドキュメントを参照してください: http://pythoncard.sourceforge.net/framework/components/TextArea.html

使用したいメソッドはappendTextとwriteTextだと思います

于 2010-01-14T17:08:57.480 に答える