PyQt 在 QTreeWidget 内隐藏 QDialogs
我有一个 QTreeWidget,里面有 QComboBoxes。我希望能够隐藏组合框。
我使用 itemWidget 函数从树中获取 QComboBox。我尝试过使用 setVisible(False) 和 hide() 但都不起作用。任何人都可以解释为什么会出现这种情况并可能提供灵魂吗?
我怀疑它与 QTreeWidget 或 QTreeWidgetItems 控制其小部件的可见性有关。
I have a QTreeWidget with QComboBoxes inside of it. I would like to be able to hide the combo boxes.
I am getting the QComboBox out of the tree using the itemWidget function. I have tried using setVisible(False) and hide() but neither work. Can anyone explain why this is the case and possibly offer a soultion?
I suspect it has something to do with the QTreeWidget or the QTreeWidgetItems controlling the visibility of its widgets.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您是否尝试过将 QComboBoxes 放入 QWidget 内的布局中,并将 QWidget 放入 QTreeWidget 中?
Have you tried putting the QComboBoxes inside a layout inside a QWidget, and placing the QWidget in the QTreeWidget?