• 大小: 0.02M
    文件类型: .zip
    金币: 1
    下载: 0 次
    发布日期: 2021-02-21
  • 语言: C/C++
  • 标签:

资源简介

C++实战源码-列表控件右键菜单(入门级实例372).zip

资源截图

代码片段和文件信息

// MyListCtrl.cpp : implementation file
//

#include “stdafx.h“
#include “PopManu.h“
#include “MyListCtrl.h“

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

/////////////////////////////////////////////////////////////////////////////
// CMyListCtrl

CMyListCtrl::CMyListCtrl()
{
}

CMyListCtrl::~CMyListCtrl()
{
}


BEGIN_MESSAGE_MAP(CMyListCtrl CListCtrl)
//{{AFX_MSG_MAP(CMyListCtrl)
ON_WM_CONTEXTMENU()
//}}AFX_MSG_MAP
END_MESSAGE_MAP()

/////////////////////////////////////////////////////////////////////////////
// CMyListCtrl message handlers

void CMyListCtrl::oncontextmenu(CWnd* pWnd CPoint point) 
{
CMenu m_popmenu;
m_popmenu.LoadMenu(IDR_POPMENU);
CMenu* m_submenu = m_popmenu.GetSubMenu(0);
m_submenu->TrackPopupMenu(TPM_LEFTBUTTON |TPM_LEFTALIGN point.xpoint.ythis);
m_popmenu.DestroyMenu();
}

 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----
     文件      135168  2007-05-08 08:47  PopManu\Menu.mdb
     文件         916  2010-06-20 10:54  PopManu\MyListCtrl.cpp
     文件        1148  2010-06-20 10:54  PopManu\MyListCtrl.h
     文件        1440  2010-10-27 14:18  PopManu\PopManu.clw
     文件        2481  2007-05-08 08:47  PopManu\PopManu.cpp
     文件        4306  2010-06-20 11:19  PopManu\PopManu.dsp
     文件         539  2007-05-08 08:47  PopManu\PopManu.dsw
     文件        1335  2007-05-08 08:47  PopManu\PopManu.h
     文件        5552  2010-06-20 10:52  PopManu\PopManu.rc
     文件        6311  2010-06-20 10:55  PopManu\PopManuDlg.cpp
     文件        1586  2010-06-20 10:55  PopManu\PopManuDlg.h
     文件         870  2010-06-20 10:52  PopManu\resource.h
     文件         209  2007-05-08 08:47  PopManu\StdAfx.cpp
     文件        1195  2007-05-08 08:47  PopManu\StdAfx.h
     文件        1078  2007-05-08 08:47  PopManu\res\PopManu.ico
     文件         399  2007-05-08 08:47  PopManu\res\PopManu.rc2

评论

共有 条评论