본문 바로가기
개발이야기

[QT] 개발하면서 팁 정리

by 코저씨 2024. 8. 28.
728x90

1. QT5 기준 스타일 시트 추천

Qt Style Sheets Examples | Qt Widgets 5.15.17

 

2. 캘린더 크기 변경방법

Changing size, color and font size in QDateEdit | Qt Forum

 QFont calFont("Arial", 14);
 ui->Adoption_dateEdit->calendarWidget ()->setFont (calFont);

 

3. QTableView 관련

c++ - How to get right row height in Qt for QTableView object? - Stack Overflow

 

4. QTableView 내용 정렬하기

[SOLVED] QTableView Alignment | Qt Forum

 

5.QT 기본 기능을 상세하게 알려주는 사이트 (특히 QCalendarWidget)

02.14 Display - QCalendarWidget - 초보자를 위한 Python GUI 프로그래밍 - PyQt5 (wikidocs.net)

 

6. QT GridLayout에 위젯 추가 및 스크롤바 추가

c++ - Qt Grid Layout doesn't fit into Scroll Area - Stack Overflow

[C++, QT] QGridLayout 에 위젯 배치 (tistory.com)

c++ - QT GridLayout add Stacked QLabel - Stack Overflow

2. QGridLayout - Basic Python GUI Programming: PySide and PyQt (wikidocs.net) (상세,추천)

 

728x90