QPushButton의 background color를 설정하고/가져오는 방법입니다.
1. QPushButton의 background color 설정하기
QColor color(Qt::red);
ui->pushButton->setStyleSheet(QString("background-color: %1;").arg(color.name()));
2. QPushButton의 background color 가져오기
// C++ code
QColor Panel::buttonColor() const
{
return ui->pushButton->palette().background().color();
}
'개발 > Qt' 카테고리의 다른 글
[Qt] 디렉토리가 비어있는지 체크, 디렉토리 안 파일 개수 세기 (0) | 2022.06.14 |
---|---|
[Qt] 파일에서 읽기 전용(Read Only) 속성 제거하기 (0) | 2022.03.04 |
[Qt] QMessageBox 안에 html 태그 입력하기 (0) | 2022.02.18 |
[PyQt] 시그널 블럭(Signal Blocking) (0) | 2022.02.05 |
[Qt] Qt 프레임워크란 (0) | 2022.01.25 |