?? mybitmapbutton.cpp
字號(hào):
// MyBitmapButton.cpp : 實(shí)現(xiàn)文件
//
#include "stdafx.h"
#include "hoopstest.h"
#include "MyBitmapButton.h"
#include ".\mybitmapbutton.h"
// CMyBitmapButton
IMPLEMENT_DYNAMIC(CMyBitmapButton, CBitmapButton)
CMyBitmapButton::CMyBitmapButton()
{
}
CMyBitmapButton::~CMyBitmapButton()
{
}
BEGIN_MESSAGE_MAP(CMyBitmapButton, CBitmapButton)
ON_WM_LBUTTONUP()
END_MESSAGE_MAP()
// CMyBitmapButton 消息處理程序
void CMyBitmapButton::OnLButtonUp(UINT nFlags, CPoint point)
{
CBitmapButton::OnLButtonUp(nFlags, point);
AfxGetMainWnd()->SetFocus();
}
?? 快捷鍵說(shuō)明
復(fù)制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號(hào)
Ctrl + =
減小字號(hào)
Ctrl + -