def __init__(self):
super(TableView, self).__init__()
# self.clicked.connect(self.show_cell)
self.setStyleSheet("""
QTableView {
background-color: #646464;
padding: 4px;
font-size: 8pt;
border-style: none;
border-bottom: 1px solid #fffff8;
border-right: 1px solid #fffff8;
selection-background-color: qlineargradient(x1: 0, y1: 0, x2: 0.5, y2: 0.5,
stop: 0 #FF92BB, stop: 1 white);
}
""")
评论列表
文章目录