使用 QLineEdit 的调色板,我们可以将 QGradient 指定为其背景颜色:
line = QtGui.QLineEdit()
palette = line.palette()
QRectF = QtCore.QRectF(line.rect())
gradient = QtGui.QLinearGradient(QRectF.topLeft(), QRectF.topRight())
palette.setBrush(QtGui.QPalette.Base, QtGui.QBrush(gradient))
line.setPalette(palette)
line.show()
在使用QTableView
它时,我会从模型的方法中为每个请求QAbstractTableModel
返回一个实体。我宁愿为tableView“项目”分配渐变,而不是纯色。如何分配渐变而不是纯色?QColor
data
BackgroundColorRole
from PyQt4 import QtCore, QtGui
app = QtGui.QApplication([])
class Model(QtCore.QAbstractTableModel):
def __init__(self):
QtCore.QAbstractTableModel.__init__(self)
self.items = [[1, 'one', 'ONE'], [2, 'two', 'TWO'], [3, 'three', 'THREE']]
def rowCount(self, parent=QtCore.QModelIndex()):
return 3
def columnCount(self, parent=QtCore.QModelIndex()):
return 3
def data(self, index, role):
if not index.isValid(): return
if role in [QtCore.Qt.DisplayRole, QtCore.Qt.EditRole]:
return self.items[index.row()][index.column()]
if role == QtCore.Qt.ForegroundRole:
return QtGui.QColor("white")
if role == QtCore.Qt.BackgroundColorRole:
return QtGui.QColor("gray")
def onClick(index):
print 'clicked index: %s'%index
tableModel=Model()
tableView=QtGui.QTableView()
tableView.setModel(tableModel)
tableView.clicked.connect(onClick)
tableView.show()
app.exec_()