資源簡介
以重載方式響應CListBox右鍵,為回答網友問題的資源,不知道為什么上一次沒傳上去。

代碼片段和文件信息
//?MyList.cpp?:?實現文件
//
#include?“stdafx.h“
#include?“TestListBoxRButton.h“
#include?“MyList.h“
//?CMyList?對話框
IMPLEMENT_DYNAMIC(CMyList?CListBox)
CMyList::CMyList(CWnd*?pParent?/*=NULL*/)
:?CListBox()
{
}
CMyList::~CMyList()
{
}
void?CMyList::DoDataExchange(CDataExchange*?pDX)
{
CListBox::DoDataExchange(pDX);
}
BEGIN_MESSAGE_MAP(CMyList?CListBox)
ON_WM_RBUTTONUP()
END_MESSAGE_MAP()
void?CMyList::OnRButtonUp(UINT?nFlags?CPoint?point)
{
int?nIndex?=?GetCurSel();
if?(nIndex?0?||?nIndex?>GetCount())
{
MessageBox(TEXT(“沒有選擇listbox項“));
return;
}
DeleteString(nIndex);
CListBox::OnRButtonUp(nFlags?point);
}
?屬性????????????大小?????日期????時間???名稱
-----------?---------??----------?-----??----
?????文件??????88064??2013-10-10?11:11??TestListBoxRButton\Release\TestListBoxRButton.exe
?????文件????????705??2013-10-10?11:09??TestListBoxRButton\TestListBoxRButton\MyList.cpp
?????文件????????432??2013-10-10?11:08??TestListBoxRButton\TestListBoxRButton\MyList.h
?????文件???????3067??2013-10-10?09:57??TestListBoxRButton\TestListBoxRButton\ReadMe.txt
????.......?????67777??2007-11-28?16:21??TestListBoxRButton\TestListBoxRButton\res\TestListBoxRButton.ico
?????文件????????374??2013-10-10?09:57??TestListBoxRButton\TestListBoxRButton\res\TestListBoxRButton.rc2
?????文件????????736??2013-10-10?10:06??TestListBoxRButton\TestListBoxRButton\resource.h
?????文件????????151??2013-10-10?09:57??TestListBoxRButton\TestListBoxRButton\stdafx.cpp
?????文件???????1854??2013-10-10?09:57??TestListBoxRButton\TestListBoxRButton\stdafx.h
?????文件???????1030??2013-10-10?09:57??TestListBoxRButton\TestListBoxRButton\targetver.h
?????文件???????1809??2013-10-10?09:57??TestListBoxRButton\TestListBoxRButton\TestListBoxRButton.cpp
?????文件????????517??2013-10-10?09:57??TestListBoxRButton\TestListBoxRButton\TestListBoxRButton.h
?????文件???????5351??2013-10-10?10:07??TestListBoxRButton\TestListBoxRButton\TestListBoxRButton.rc
?????文件???????5714??2013-10-10?10:56??TestListBoxRButton\TestListBoxRButton\TestListBoxRButton.vcproj
?????文件???????3871??2013-10-10?11:09??TestListBoxRButton\TestListBoxRButton\TestListBoxRButtonDlg.cpp
?????文件????????774??2013-10-10?10:57??TestListBoxRButton\TestListBoxRButton\TestListBoxRButtonDlg.h
?????文件????????920??2013-10-10?09:57??TestListBoxRButton\TestListBoxRButton.sln
?????目錄??????????0??2013-10-10?09:57??TestListBoxRButton\TestListBoxRButton\res
?????目錄??????????0??2013-10-10?11:11??TestListBoxRButton\Release
?????目錄??????????0??2013-10-10?11:12??TestListBoxRButton\TestListBoxRButton
?????目錄??????????0??2013-10-10?11:12??TestListBoxRButton
-----------?---------??----------?-----??----
???????????????183146????????????????????21
- 上一篇:CListBox響應右鍵菜單
- 下一篇:中興近年筆試題及答案
評論
共有 條評論