Сообщество IT-специалистов
Ответы на любые вопросы об IT
Профессиональное развитие в IT
Удаленная работа для IT-специалистов
table->setAlternatingRowColors(true);
myTable->setAlternatingRowColors(true); myTable->setStyleSheet("alternate-background-color: yellow;background-color: red;");
const QPalette& mpal = table->palette(); QColor mainColor = mpal.color(QPalette::Normal, QPalette::Base); QColor altColor = mpal.color(QPalette::Normal, QPalette::AlternateBase); mpal.setColor(QPalette::Normal, QPalette::Base, altColor); mpal.setColor(QPalette::Normal, QPalette::AlternateBase, mainColor); table->setPalette(mpal);