How to find an object by name in pyqt?

拥有回忆 提交于 2019-11-28 03:06:10

问题


I have a list of dictionaries:

globalParams = [{'attr':'enabled','ctrl':'checkBoxEnabled','type':'checkBox'},
                {'attr':'colorMode','ctrl':'comboBoxColorMode','type':'comboBox'}]

'ctrl' - name of the control in the Qt window.

typically, the code is as follows:

self.checkBoxEnabled.checkState()

but checkBoxEnabled is an object. and i have only a string name 'checkBoxEnabled' and cannot use it...

how to find an object by name in pyqt? something like? self.GetObjectByName('checkBoxEnabled').checkState()


回答1:


You can use QObject::findChild method. In pyqt it should be written like this:

checkbox = self.findChild(QtGui.QCheckBox, "checkBoxEnabled")

self should be a parent widget of the checkbox.



来源:https://stackoverflow.com/questions/19048657/how-to-find-an-object-by-name-in-pyqt

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!