QtDesigner & PySide:QTableWidget 无法访问

发布于 2024-12-02 02:45:13 字数 534 浏览 0 评论 0原文

我在 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

憧憬巴黎街头的黎明 2024-12-09 02:45:13

您可以尝试使用以下命令查看该表是否存在: 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).

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文