使用PyQt5时,我无法在各个标签上看到关闭按钮。当我点击我知道关闭按钮的位置时,我可以关闭各个标签,但不能直接看到该按钮:
#!/bin/python3
import sys
from PyQt5.QtWidgets import (QApplication, QVBoxLayout,
QTabBar, QFrame)
class App(QFrame):
def __init__(self):
super().__init__()
self.setWindowTitle("Web Browser")
self.setBaseSize(683, 384)
self.CreateApp()
def CreateApp(self):
self.layout = QVBoxLayout()
self.tab_Bar = QTabBar(movable=True, tabsClosable=True)
self.tab_Bar.tabCloseRequested.connect(self.CloseTab)
self.tab_Bar.addTab("Tab 1")
self.tab_Bar.addTab("Tab 2")
self.tab_Bar.setCurrentIndex(0)
self.layout.addWidget(self.tab_Bar)
self.setLayout(self.layout)
self.show()
def CloseTab(self, i):
self.tab_Bar.removeTab(i)
if __name__ == "__main__":
app = QApplication(sys.argv)
window = App()
sys.exit(app.exec_())
我正在使用Python版本3.6.2和PyQt5版本5.9