MFC/Reference (2) 썸네일형 리스트형 [MFC] List Control 컬럼 클릭 시 오름차순 내림차순 번갈아 가면서 정렬 헤더 파일에typedef struct SORTPARAM{ int columnIdx; bool sortDirect; CListCtrl *pList;}SORTPARAM; 구조체와 bool m_bSortDirect; bool 변수 추가 후List Control의 HDN_ITEMCLICK 핸들러 추가void CDocumentCheckUpReportDlg::OnHdnItemclickList(NMHDR *pNMHDR, LRESULT *pResult){ LPNMHEADER phdr = reinterpret_cast(pNMHDR); *pResult = 0; SORTPARAM sParam; sParam.pList = (CListCtrl *)GetDlgItem(IDC_LIST); sParam.columnIdx = p.. [MFC] 메시지 박스 윈도우 최상단에 출력 MessageBoxA(GetDesktopWindow(), text.c_str(), caption.c_str(), type | MB_SETFOREGROUND | MB_TOPMOST | MB_SYSTEMMODAL); https://github.com/MoongStory/WindowsOperatingSystem 이전 1 다음