绘图基础--鼠标移动画点

绘图基础--鼠标移动画点


// draw1.cpp

#include <afxwin.h>

// Define the application class
class CApp : public CWinApp
{
public:
	virtual BOOL InitInstance();
};

CApp App;  

// define the window class
class CWindow : public CFrameWnd
{ 
public:
	CWindow(); 
	afx_msg void OnMouseMove(UINT,CPoint);
	DECLARE_MESSAGE_MAP()
};

// The window's constructor
CWindow::CWindow()
{ 
	Create(NULL, "Drawing Tests", 
		WS_OVERLAPPEDWINDOW,
		CRect(0,0,250,250)); 
}

// The messahe map
BEGIN_MESSAGE_MAP( CWindow, CFrameWnd )
	ON_WM_MOUSEMOVE()	
END_MESSAGE_MAP()

// Handle mouse movement
void CWindow::OnMouseMove(UINT flag, 
	CPoint mousePos)
{
	//按住鼠标左键移动时,画点
	if (flag == MK_LBUTTON)
	{
		CClientDC dc(this);
		dc.SetPixel(mousePos,RGB(0,0,255));  //蓝色
		//dc.SetPixel(mousePos,RGB(rand()%256,rand()%256,rand()%256));
	}

	//按住鼠标右键移动时,擦除点
    if (flag == MK_RBUTTON)
	{
		CClientDC dc(this);
		dc.SetPixel(mousePos,RGB(255,255,255));	 //白色
	}
}

// Init the application
BOOL CApp::InitInstance()
{
	m_pMainWnd = new CWindow();
	m_pMainWnd->ShowWindow(m_nCmdShow);
	m_pMainWnd->UpdateWindow();
	return TRUE;
}


  • 0
    点赞
  • 1
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值