Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个标签小部件,每个小部件都有表格小部件,包含带有链接的单元格。我知道如何从表格小部件获取当前文本并在浏览器中打开它,这就是我想要做的。
selection=str(self.tableWidget_1.currentItem().text()).encode('utf8') webbrowser.open(selection,new=2)
我的问题是我不知道如何获取当前的表格小部件,而不是像上面那样预先确定。有什么想法吗?谢谢。
见QTabWidget.currentWidget。
QTabWidget.currentWidget