资源简介
基于MFC的RGB调色器,比较简单的。实现起来还是不错的。

代码片段和文件信息
// RGB.cpp : Defines the class behaviors for the application.
//
#include “stdafx.h“
#include “RGB.h“
#include “RGBDlg.h“
#ifdef _DEBUG
#define new DEBUG_NEW
#undef THIS_FILE
static char THIS_FILE[] = __FILE__;
#endif
/////////////////////////////////////////////////////////////////////////////
// CRGBApp
BEGIN_MESSAGE_MAP(CRGBApp CWinApp)
//{{AFX_MSG_MAP(CRGBApp)
// NOTE - the ClassWizard will add and remove mapping macros here.
// DO NOT EDIT what you see in these blocks of generated code!
//}}AFX_MSG
ON_COMMAND(ID_HELP CWinApp::onhelp)
END_MESSAGE_MAP()
/////////////////////////////////////////////////////////////////////////////
// CRGBApp construction
CRGBApp::CRGBApp()
{
// TODO: add construction code here
// Place all significant initialization in InitInstance
}
/////////////////////////////////////////////////////////////////////////////
// The one and only CRGBApp object
CRGBApp theApp;
/////////////////////////////////////////////////////////////////////////////
// CRGBApp initialization
BOOL CRGBApp::InitInstance()
{
AfxEnableControlContainer();
// Standard initialization
// If you are not using these features and wish to reduce the size
// of your final executable you should remove from the following
// the specific initialization routines you do not need.
#ifdef _AFXDLL
Enable3dControls(); // Call this when using MFC in a shared DLL
#else
Enable3dControlsStatic(); // Call this when linking to MFC statically
#endif
CRGBDlg dlg;
m_pMainWnd = &dlg;
int nResponse = dlg.DoModal();
if (nResponse == IDOK)
{
// TODO: Place code here to handle when the dialog is
// dismissed with OK
}
else if (nResponse == IDCANCEL)
{
// TODO: Place code here to handle when the dialog is
// dismissed with Cancel
}
// Since the dialog has been closed return FALSE so that we exit the
// application rather than start the application‘s message pump.
return FALSE;
}
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
文件 106537 2014-08-25 15:06 RGB\Debug\RGB.exe
文件 197696 2014-08-25 15:06 RGB\Debug\RGB.ilk
文件 14046 2014-08-25 15:06 RGB\Debug\RGB.obj
文件 5621392 2014-08-25 09:25 RGB\Debug\RGB.pch
文件 386048 2014-08-25 15:06 RGB\Debug\RGB.pdb
文件 2732 2014-08-25 14:54 RGB\Debug\RGB.res
文件 28455 2014-08-25 15:06 RGB\Debug\RGBDlg.obj
文件 105442 2014-08-25 09:25 RGB\Debug\StdAfx.obj
文件 214016 2014-08-25 15:06 RGB\Debug\vc60.idb
文件 372736 2014-08-25 15:06 RGB\Debug\vc60.pdb
文件 3525 2014-08-25 09:19 RGB\ReadMe.txt
文件 1078 2014-08-25 09:19 RGB\res\RGB.ico
文件 395 2014-08-25 09:19 RGB\res\RGB.rc2
文件 773 2014-08-25 09:25 RGB\resource.h
文件 35600 2014-08-25 14:54 RGB\RGB.APS
文件 1254 2014-08-25 15:06 RGB\RGB.clw
文件 2021 2014-08-25 10:12 RGB\RGB.cpp
文件 4105 2014-08-25 09:19 RGB\RGB.dsp
文件 531 2014-08-25 09:19 RGB\RGB.dsw
文件 1291 2014-08-25 09:19 RGB\RGB.h
文件 50176 2014-08-25 15:06 RGB\RGB.ncb
文件 48640 2014-08-25 15:06 RGB\RGB.opt
文件 984 2014-08-25 15:06 RGB\RGB.plg
文件 5667 2014-08-25 14:54 RGB\RGB.rc
文件 5556 2014-08-25 15:06 RGB\RGBDlg.cpp
文件 1591 2014-08-25 15:06 RGB\RGBDlg.h
文件 205 2014-08-25 09:19 RGB\StdAfx.cpp
文件 1054 2014-08-25 09:19 RGB\StdAfx.h
目录 0 2014-08-25 15:06 RGB\Debug
目录 0 2014-08-25 09:19 RGB\res
............此处省略4个文件信息
- 上一篇:C语言编写的象棋源码范例
- 下一篇:C++开发漂亮的软件界面
相关资源
- C语言开发实战宝典
- 基于mfc的多线程文件传输
- MFC数字钟(基于VC6.0)
- 小甲鱼C语言课件 源代码
- VC++MFC小游戏实例教程(实例)+MFC类库
- c语言看发的网络协议 ,源代码
- C语言实现的DES对称加密算法
- 数据结构,迷宫问题C语言版源代码
- C语言 学生信息管理系统 源代码
- C语言版3D魔方游戏源代码
- QT5开发及源代码
- ChartCtrl控件库(可在VS2019中使用)
- 商品库存管理系统 C++ MFC
- LC-PWM-RGB(RGB LED灯 调色调光器 PWM控制
- USB CAN Tool 源代码(LabVIEW 2011环境)
- 超声波水表源代码
- 一个模糊PID温度控制算法源代码
- 数据结构 图的遍历源代码
- 数据结构实验源代码集
- mfc 调用redis
- TCP/IP客户端和服务器端源代码,好用
- MFC视频播放器源码(支持avi/wma/mp3等格
- 交互式计算机图形学 第六版 OpenGL源代
- mfc绘图大全(画直线、矩形、椭圆)
- MFC控件重绘
- hook,捕获所有案件,查找所有窗口,
- (学习)VS2010之MFC入门到精通教程
- 数据结构教程李春葆第五版书中例题
- 三次样条插值类源代码!
- diy写字机grbl v1.1源代码
评论
共有 条评论