Qt Widgets Designer
또한 QFormBuilder 클래스는 런타임에 UI 파일에서 사용자 인터페이스를 구성할 수 있는 기능을 제공합니다.
참고: 이 문서에서는 Qt Widgets Designer 도구와 Qt Widgets 용 그래픽 사용자 인터페이스 구축과 관련된 클래스를 다룹니다. Qt Design Studio 는 Qt Quick 사용자 인터페이스를 위한 UI 디자인 및 구현의 모든 단계를 다루는 UI 구성 도구입니다.
모듈 사용하기
Qt 모듈의 C++ API를 사용하려면 모듈 라이브러리에 직접 또는 다른 종속성을 통해 링크해야 합니다. CMake 및 qmake를 비롯한 여러 빌드 도구가 이를 지원합니다.
CMake로 빌드하기
find_package()
명령을 사용하여 Qt6
패키지에서 필요한 모듈 컴포넌트를 찾습니다:
find_package(Qt6 REQUIRED COMPONENTS Designer)
target_link_libraries(mytarget PRIVATE Qt6::Designer)
자세한 내용은 CMake로 빌드 개요를 참조하세요.
qmake로 빌드하기
qmake로 빌드하도록 모듈을 구성하려면 프로젝트의 .pro 파일에 QT
변수의 값으로 모듈을 추가합니다:
QT += designer
문서 및 가이드
이 문서에는 Qt Widgets Designer 에 대한 정보가 포함되어 있습니다.
- Qt Widgets Designer - 사용자 정의 위젯 플러그인 생성 및 사용 -컴포넌트 생성 및 사용
- Qt Widgets Designer 매뉴얼 - 사용 Qt Widgets Designer
API 참조
다음은 API 참조 자료에 대한 링크입니다.
© 2025 The Qt Company Ltd. Documentation contributions included herein are the copyrights of their respective owners. The documentation provided herein is licensed under the terms of the GNU Free Documentation License version 1.3 as published by the Free Software Foundation. Qt and respective logos are trademarks of The Qt Company Ltd. in Finland and/or other countries worldwide. All other trademarks are property of their respective owners.