도킹 윈도우 생성 중 CButton을 추가하였으나 비활성 상태로 사용 불가 현상이 있어 검색 중
참조 링크를 찾았다.
내용 추가로 IDC_XX선언 범위가 벗어나 동작 오류도 있었다.
#define IDC_PROPER_ACTION_BT 0xD111 //번호는 8~0xDFFF 사이에서 지정
해더파일
afx_msg void OnBTAcition();
afx_msg void OnUpdateButton(CCmdUI *pCmdUI);
소스파일
ON_BN_CLICKED(IDC_PROPER_ACTION_BT, OnBTAcition)
ON_UPDATE_COMMAND_UI(IDC_PROPER_ACTION_BT, OnUpdateButton)
void CPropertiesWnd::OnBTAcition()
{
AfxMessageBox(L"Action Button Click");
}
void CPropertiesWnd::OnUpdateButton(CCmdUI *pCmdUI)
{
pCmdUI->Enable(TRUE);
}
참조
'작업 > MFC' 카테고리의 다른 글
MFC에서 Excel 컨트롤 하기(4) (0) | 2022.09.02 |
---|---|
Visual Studio Release모드 Debugging (0) | 2022.01.10 |
비주얼 스튜디오 if문 for문 확장 축소 (문 블록 개요) (0) | 2021.10.28 |
CFileDialog Error (File Click-Mouse R) (1) | 2021.10.14 |
MFC에서 Excel 컨트롤 하기(3) (0) | 2021.06.16 |