본문 바로가기

PROGRAM/Qt with C++

Qt - VisualStudio 2019 한글깨짐

예제 코드 하나 추가 (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

 

Qt 한글깨짐 수정방법 | Utf8 unicode 인코딩 | 예제 코드

결과 전 : 한글 깨짐 결과 후 : 한글 깨짐 해결 해결방법 QString::fromLocal8bit(str) 해결 전 코드 str.append(QString("채널 : %1\n").arg(cam.channel)); str.append(QString("카메라 이름 : %1 \n").arg(ca..

flower0.tistory.com

 

 

'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