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

📄 explorertreetarget.h

📁 类似资源管理器的vc源代码,实现起来相当不容易啊,要细心琢磨
💻 H
字号:
// ExplorerTreeTarget.h: interface for the CExplorerTreeTarget class.
//
//////////////////////////////////////////////////////////////////////

#if !defined(AFX_EXPLORERTREETARGET_H__3D94BEBD_D2C1_4863_BD59_19BEF62105BB__INCLUDED_)
#define AFX_EXPLORERTREETARGET_H__3D94BEBD_D2C1_4863_BD59_19BEF62105BB__INCLUDED_

#if _MSC_VER > 1000
#pragma once
#endif // _MSC_VER > 1000

class CExplorerTreeTarget : public COleDropTarget
{

public:
	CExplorerTreeTarget();
	virtual ~CExplorerTreeTarget();

// Overrides
public:
		virtual DROPEFFECT OnDragEnter( CWnd* pWnd, COleDataObject* pDataObject, 
		DWORD dwKeyState, CPoint point );
		virtual DROPEFFECT OnDragOver( CWnd* pWnd, COleDataObject* pDataObject, 
		DWORD dwKeyState, CPoint point );
		virtual void OnDragLeave( CWnd* pWnd );
		virtual BOOL OnDrop(CWnd* pWnd, COleDataObject* pDataObject,
		DROPEFFECT dropEffect, CPoint point);
};

#endif // !defined(AFX_EXPLORERTREETARGET_H__3D94BEBD_D2C1_4863_BD59_19BEF62105BB__INCLUDED_)

⌨️ 快捷键说明

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