资源简介

一个扩展的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


评论

共有 条评论