如何引用 QTabWidget 的特定选项卡内的小部件?
我正在使用 PyQt 为电路模拟器制作 GUI,并以编程方式创建和删除选项卡(即用户单击按钮,并将新选项卡添加到 QTabWidget)。
这已经可以工作了(我在 Qt Creator 中绘制了一个 QFrame,并在我的代码中将其添加为新选项卡),但我需要引用特定选项卡内的小部件(例如第三个选项卡内的 QwtPlot)。如何才能实现这一目标?
I am using PyQt to make a GUI for a circuit simulator, and am programmatically creating and deleting tabs (i.e. the user clicks on a button, and a new tab is added to a QTabWidget).
This is already working (I drew a QFrame in Qt Creator and, in my code, add it as a new tab), but I need to refer to a widget which is inside a specific tab (e.g. a QwtPlot inside the 3rd tab). How can this be achieved?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以通过调用
QTabWidget.widget(索引)
。You can retrieve the widget from a specific tab by calling
QTabWidget.widget(index)
.