1. 使用qss文件設置全部
//禁用狀態
QLineEdit:disabled{
color: #000000;
background:#0000ff;
}
//編輯狀態
QLineEdit:enabled{
color: #000000;
background:#ff0000;
}
2. 使用setStyleSheet()函數設置
m_mainwindow->setStyleSheet("QLineEdit:enabled{color: #000000;background:#ff000000;}");
参考:
(1) Qt Style Sheets Examples
https://doc.qt.io/qt-6/stylesheet-examples.html#customizing-qlineedit