⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 picker.cpp

📁 是一个较好的缩放工具
💻 CPP
字号:
// Picker.cpp : implementation file
//

#include "stdafx.h"
#include "Picker.h"

#ifdef _DEBUG
#define new DEBUG_NEW
#undef THIS_FILE
static char THIS_FILE[] = __FILE__;
#endif

DECLARE_MESSAGE(UWM_PICKER)
/////////////////////////////////////////////////////////////////////////////
// CPicker

CPicker::CPicker()
{
}

CPicker::~CPicker()
{
}


BEGIN_MESSAGE_MAP(CPicker, CStatic)
        //{{AFX_MSG_MAP(CPicker)
        ON_WM_LBUTTONDOWN()
        //}}AFX_MSG_MAP
END_MESSAGE_MAP()

/////////////////////////////////////////////////////////////////////////////
// CPicker message handlers

void CPicker::OnLButtonDown(UINT nFlags, CPoint point) 
   {
    GetParent()->SendMessage(UWM_PICKER, (WPARAM)TRUE, (LPARAM)MAKELONG(point.x, point.y));
        
    //CStatic::OnLButtonDown(nFlags, point);
   }

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -