我有两个QTableWidget
,应该同步他们的选择。更准确地说,表2中选择的所有内容都应在表1中自动选择。
一切正常,但如果我将属性setAlternatingRowColors
设置为true,则会出现视觉问题。 (我认为setAlternatingRowsColors是一个很棒的功能。)
#include <QApplication>
#include <QPushButton>
#include <QTableWidget>
#include <QHBoxLayout>
QTableWidget* create() {
auto table = new QTableWidget;
table->setAlternatingRowColors(true);
table->setSortingEnabled(true);
table->setRowCount(20);
table->setColumnCount(2);
for (auto i = 0; i < 20; i++) {
{
auto item = new QTableWidgetItem(QString("%1").arg(i));
table->setItem(i, 1, item);
}
{
auto item = new QTableWidgetItem(QString("%1").arg(i));
table->setItem(i, 0, item);
}
}
return table;
}
int main(int argc, char** args) {
QApplication app(argc, args);
QTableWidget* table1 = create();
QTableWidget* table2 = create();
auto frame = new QFrame;
frame->setLayout(new QHBoxLayout);
frame->layout()->addWidget(table1);
frame->layout()->addWidget(table2);
frame->show();
QObject::connect(table2, &QTableWidget::itemSelectionChanged, [&]() {
table1->selectionModel()->clearSelection();
for (auto item : table2->selectedItems()) {
table1->item(item->row(), item->column())->setSelected(true);
}
table1->update();
});
app.exec();
}
即使奇数行中的元素选择如前所述,用户也无法看到此选择。似乎两种颜色都是一样的(但为什么会这样呢?)。
从这个角度来看,可能只有两种可能的解决方案。更改选择颜色或更改alternatingRows的颜色。
如何在整个应用程序中一致地更改交替行的颜色,这可能包含更多QTableWidgets?
答案 0 :(得分:1)
这应该有效(主要):
QString style = "QTableWidget { alternate-background-color: white; background-color: gray; }";
style.append(" QTableWidget::item:selected { background: red; }"); //selection color
QApplication::setStyleSheet(style);