QtDesigner & PySide:QTableWidget 无法访问
我在 QtDesigner 中制作了一个表单。该表单在函数的帮助下从 PySide 加载
widget = loader.load(file, parent)
无法访问 QTableWidget(带有 objectNname buffer_table)
widget.buffer_table
但是,如果我使用 QPushButton 则 。我怎样才能让它工作。 我想用Python 来填写表格。
这是我想使用的 ui 文件: http://pastebin.com/6PZFrvmr
编辑: 当我创建一个新表并尝试加载它时,它似乎有效。但是,如果我将其放入 QTabWidget 中,我将无法访问它。
编辑2: widget.findChild(QWidget, "buffer_table")
:搜索&找到就是窍门!
I made a form in QtDesigner. This form gets loaded from PySide with help of the function
widget = loader.load(file, parent)
However, the QTableWidget (with objectNname buffer_table) don't get accessible with
widget.buffer_table
If I use a QPushButton instead it works. How can I get this working.
I'd like to fill up the table in Python.
This is the ui-file i'd like to use: http://pastebin.com/6PZFrvmr
EDIT:
When I create a new table and try to load it, it seems to work. However, if I put it in a QTabWidget I can't access it.
EDIT2:widget.findChild(QWidget, "buffer_table")
: Search & find is the trick!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以尝试使用以下命令查看该表是否存在:
widget.findChild(QWidget, "buffer_table")
(即使是从父级,因为它是递归搜索)。You could try to see if the table is there with:
widget.findChild(QWidget, "buffer_table")
(even from the parent, since it is a recursive search).