Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
数時間前にPyQt4を使用して最初のGUIの作成を開始しましたが、問題が発生しました。私はWeb全体を調査しましたが、いくつかのリソースが近づいてきましたが、実際に私の質問に答えることはありませんでした。
基本的に、ウィジェットからユーザー入力テキストを取得し、ボタンをクリックするだけでそのテキストを変数に格納できるかどうかを知りたいです。
これまでQLineEditメソッドを調べましたが、探しているものが見つかりませんでした。これを達成するためのより良い方法はありますか?
たぶん、このようなものですか?
... def __init__(self): ... self.button.clicked.connect(self.on_button_click) ... def on_button_click(self): self.variable = self.line_edit.text() print(self.variable) ...