访问 QTabWidget 中选项卡的小部件
我有一个 QTabWidget,其中每个选项卡都有一个 QPlainTextEdit 作为其小部件。那么,如何访问每个选项卡小部件?我如何编辑该小部件?
I have a QTabWidget
, where each tab has a QPlainTextEdit
as its widget. So, how do I access each tab widget? How do I edit that widget?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以使用
的
以便获取指定选项卡索引处的小部件。widget
功能>QTabWidget如果
QPlainTextEdit
是每个选项卡页的唯一小部件,那么返回的小部件就是那个。否则,您需要获取小部件的children
并在其中找到QPlainTextEdit
。You can use the
widget
function ofQTabWidget
in order to get the widget at the specified tab index.If the
QPlainTextEdit
is the only widget of every tab page then the returned widget will be that. Otherwise you need to get thechildren
of the widget and find theQPlainTextEdit
in them.