MyColorDlg.cpp
上传用户:ywlong9188
上传日期:2022-05-31
资源大小:2656k
文件大小:1k
源码类别:

远程控制编程

开发平台:

C/C++

  1. // MyColorDlg.cpp : implementation file
  2. //
  3. #include "stdafx.h"
  4. #include "Proj.h"
  5. #include "MyColorDlg.h"
  6. #ifdef _DEBUG
  7. #define new DEBUG_NEW
  8. #undef THIS_FILE
  9. static char THIS_FILE[] = __FILE__;
  10. #endif
  11. /////////////////////////////////////////////////////////////////////////////
  12. // CMyColorDlg
  13. IMPLEMENT_DYNAMIC(CMyColorDlg, CColorDialog)
  14. CMyColorDlg::CMyColorDlg(COLORREF clrInit, DWORD dwFlags, CWnd* pParentWnd) :
  15. CColorDialog(clrInit, dwFlags, pParentWnd)
  16. {
  17. }
  18. BEGIN_MESSAGE_MAP(CMyColorDlg, CColorDialog)
  19. //{{AFX_MSG_MAP(CMyColorDlg)
  20. // NOTE - the ClassWizard will add and remove mapping macros here.
  21. //}}AFX_MSG_MAP
  22. END_MESSAGE_MAP()