예제 코드 하나 추가 (SpinBox 예제)
QString str;
str.append(QString::fromLocal8Bit("당신의 나이는 "));
//str.append(" \n");
str.append(QString("%1").arg(ui.spinBox->cleanText()));
str.append(QString::fromLocal8Bit("살 입니다."));
ui.label->setText(str);
https://flower0.tistory.com/221
'PROGRAM > Qt with C++' 카테고리의 다른 글
Qt - Checkbox (0) | 2021.06.21 |
---|---|
Qt - RadioButton (0) | 2021.06.21 |
Qt - SpinBox (0) | 2021.06.18 |
Qt - Combobox (0) | 2021.06.18 |
Qt - PushButton (0) | 2021.06.18 |