This commit is contained in:
biosvos
2026-08-07 17:38:18 +09:00
commit 873193a243
9613 changed files with 2755992 additions and 0 deletions
@@ -0,0 +1,32 @@
// HCButton.cpp : 구현 파일입니다.
//
#include "stdafx.h"
#include "ConsoleApp.h"
#include "HCButton.h"
// CHCButton
IMPLEMENT_DYNAMIC(CHCButton, CBitmapButton)
CHCButton::CHCButton()
{
}
CHCButton::~CHCButton()
{
}
BEGIN_MESSAGE_MAP(CHCButton, CBitmapButton)
ON_WM_MOUSEMOVE()
END_MESSAGE_MAP()
// CHCButton 메시지 처리기입니다.
void CHCButton::OnMouseMove(UINT nFlags, CPoint point)
{
::SetCursor(AfxGetApp()->LoadCursor(IDC_HAND));
CBitmapButton::OnMouseMove(nFlags, point);
}