91av视频/亚洲h视频/操亚洲美女/外国一级黄色毛片 - 国产三级三级三级三级

資源簡介

一個擴展的CComboBox 下拉框 自繪 美化

資源截圖

代碼片段和文件信息


//?ComboBoxPopup.cpp?:?定義應用程序的類行為。
//

#include?“stdafx.h“
#include?“ComboBoxPopup.h“
#include?“ComboBoxPopupDlg.h“

#ifdef?_DEBUG
#define?new?DEBUG_NEW
#endif


//?CComboBoxPopupApp

BEGIN_MESSAGE_MAP(CComboBoxPopupApp?CWinAppEx)
ON_COMMAND(ID_HELP?&CWinApp::onhelp)
END_MESSAGE_MAP()


//?CComboBoxPopupApp?構造

CComboBoxPopupApp::CComboBoxPopupApp()
{
//?TODO:?在此處添加構造代碼,
//?將所有重要的初始化放置在?InitInstance?中
}


//?唯一的一個?CComboBoxPopupApp?對象

CComboBoxPopupApp?theApp;


//?CComboBoxPopupApp?初始化

BOOL?CComboBoxPopupApp::InitInstance()
{
//?如果一個運行在?Windows?XP?上的應用程序清單指定要
//?使用?ComCtl32.dll?版本?6?或更高版本來啟用可視化方式,
//則需要?InitCommonControlsEx()。否則,將無法創建窗口。
INITCOMMONCONTROLSEX?InitCtrls;
InitCtrls.dwSize?=?sizeof(InitCtrls);
//?將它設置為包括所有要在應用程序中使用的
//?公共控件類。
InitCtrls.dwICC?=?ICC_WIN95_CLASSES;
InitCommonControlsEx(&InitCtrls);

CWinAppEx::InitInstance();

AfxEnableControlContainer();

//?標準初始化
//?如果未使用這些功能并希望減小
//?最終可執行文件的大小,則應移除下列
//?不需要的特定初始化例程
//?更改用于存儲設置的注冊表項
//?TODO:?應適當修改該字符串,
//?例如修改為公司或組織名
SetRegistryKey(_T(“應用程序向導生成的本地應用程序“));

CComboBoxPopupDlg?dlg;
m_pMainWnd?=?&dlg;
INT_PTR?nResponse?=?dlg.DoModal();
if?(nResponse?==?IDOK)
{
//?TODO:?在此放置處理何時用
//??“確定”來關閉對話框的代碼
}
else?if?(nResponse?==?IDCANCEL)
{
//?TODO:?在此放置處理何時用
//??“取消”來關閉對話框的代碼
}

//?由于對話框已關閉,所以將返回?FALSE?以便退出應用程序,
//??而不是啟動應用程序的消息泵。
return?FALSE;
}

?屬性????????????大小?????日期????時間???名稱
-----------?---------??----------?-----??----

?????文件???????1744??2012-09-28?09:50??ComboBoxPopup\ComboBoxPopup\ComboBoxPopup.cpp

?????文件????????487??2012-09-28?09:50??ComboBoxPopup\ComboBoxPopup\ComboBoxPopup.h

?????文件???????4730??2012-09-28?23:39??ComboBoxPopup\ComboBoxPopup\ComboBoxPopup.rc

?????文件???????5678??2012-09-28?09:51??ComboBoxPopup\ComboBoxPopup\ComboBoxPopup.vcproj

?????文件???????1409??2012-09-28?23:50??ComboBoxPopup\ComboBoxPopup\ComboBoxPopup.vcproj.ZHL-PC.Administrator.user

?????文件???????2969??2012-09-28?23:39??ComboBoxPopup\ComboBoxPopup\ComboBoxPopupDlg.cpp

?????文件????????674??2012-09-28?23:38??ComboBoxPopup\ComboBoxPopup\ComboBoxPopupDlg.h

?????文件??????16853??2012-09-28?23:45??ComboBoxPopup\ComboBoxPopup\PopupComboBox.cpp

?????文件???????3301??2012-09-28?23:20??ComboBoxPopup\ComboBoxPopup\PopupComboBox.h

?????文件???????2845??2012-09-28?09:50??ComboBoxPopup\ComboBoxPopup\ReadMe.txt

????.......?????67777??2007-11-28?16:21??ComboBoxPopup\ComboBoxPopup\res\ComboBoxPopup.ico

?????文件????????369??2012-09-28?09:50??ComboBoxPopup\ComboBoxPopup\res\ComboBoxPopup.rc2

?????文件????????731??2012-09-28?23:38??ComboBoxPopup\ComboBoxPopup\resource.h

?????文件????????146??2012-09-28?09:50??ComboBoxPopup\ComboBoxPopup\stdafx.cpp

?????文件???????1879??2012-09-28?23:50??ComboBoxPopup\ComboBoxPopup\stdafx.h

?????文件???????1030??2012-09-28?09:50??ComboBoxPopup\ComboBoxPopup\targetver.h

?????文件????????905??2012-09-28?09:51??ComboBoxPopup\ComboBoxPopup.sln

????..A..H.?????37376??2012-09-28?23:50??ComboBoxPopup\ComboBoxPopup.suo

?????文件?????401408??2012-09-28?23:50??ComboBoxPopup\Release\ComboBoxPopup.exe

?????目錄??????????0??2012-09-28?09:50??ComboBoxPopup\ComboBoxPopup\res

?????目錄??????????0??2012-09-28?23:51??ComboBoxPopup\ComboBoxPopup

?????目錄??????????0??2012-09-28?23:51??ComboBoxPopup\Release

?????目錄??????????0??2012-09-28?23:50??ComboBoxPopup

-----------?---------??----------?-----??----

???????????????552311????????????????????23


評論

共有 條評論