1.프로젝트 우클릭 -> new -> dialog with class file 클릭
2.생성된 ui파일 작성.
1 2 3 4 5 6 7 8 9 10 11 12 13 | //객체 생성 후 dbList = new dbDialog(this); //시그널 - 슬롯 연결 connect(this , &MainWindow :: setdbList , dbList , &dbDialog :: onListRecv ); connect(dbList , &dbDialog :: dbItemSelected , this , &MainWindow :: onDbItemSelected ); //다이얼로그 표시 dbList->setModal(true); dbList->show(); | cs |
'진행중인 프로젝트 > ImageHandler' 카테고리의 다른 글
[ImageHandler] 참고 자료 (0) | 2019.06.29 |
---|---|
[Qt5] 페인트 이벤트를 받을 수 있는 사용자 정의 위젯 부분 (0) | 2019.06.29 |
Data Compression With Low-Rank Approximation [ 소스코드 ] (0) | 2019.06.29 |
[ Linear Algebra ] Data Compression With Low-Rank Approximation (0) | 2019.06.28 |
[ Network ] TCP / IP C++ / Python 소켓통신 파트 (0) | 2019.06.28 |