Qt Creator에서 텍스트를 출력해 보겠다.
Qt에서 cpp파일을 하나 만들고 코드를 넣고 실행시키면 된다.
텍스트를 출력하려면 QLabel이라는 헤더 파일이 필요하다.
#include <QApplication>
#include <QWidget>
#include <QLabel>
int main(int argc, char *argv[])
{
QApplication app(argc, argv);
QWidget window;
window.resize(1920, 1080); // window size
window.setWindowTitle("Empty window"); // widow name
QLabel label("Minit blog!", &window); // text
label.move(350, 250); // text position
window.show();
return app.exec();
}
728x90
'Qt' 카테고리의 다른 글
[Qt] 텍스트 입력란 (0) | 2024.10.16 |
---|---|
[Qt] 버튼 클릭 이벤트 (1) | 2024.10.16 |
[Qt] 버튼 만들기 (0) | 2024.10.16 |
[Qt] 빈 창 만들기 (0) | 2024.10.16 |
[Qt] Qt란? (1) | 2024.10.16 |