0
QPushButton
という状態のif
を書きたいと思います。ボタンが有効な場合はif
を実行したいと思います。では、ボタンの状態を確認するにはどうすればいいですか?PyQt4のQPushButtonの状態を確認しますか?
コード:
self.pushButton = QtGui.QPushButton()
self.pushbutton.setEnabled(False)
self.pushbutton.setEnabled(False) ##some where in the another class I have enabled it this line will not be executed all the time,so I want the check state.
if self.pushbutton.checkstate() == Enabled: ##??? How to write this condition?
some code I want to execute