ModeDialog.cpp
上传用户:z_mail1980
上传日期:2007-06-01
资源大小:647k
文件大小:1k
- // ModeDialog.cpp : implementation file
- //
- #include "stdafx.h"
- #include "practise2.h"
- #include "ModeDialog.h"
- #ifdef _DEBUG
- #define new DEBUG_NEW
- #undef THIS_FILE
- static char THIS_FILE[] = __FILE__;
- #endif
- /////////////////////////////////////////////////////////////////////////////
- // CModeDialog
- IMPLEMENT_DYNAMIC(CModeDialog, CColorDialog)
- CModeDialog::CModeDialog(COLORREF clrInit, DWORD dwFlags, CWnd* pParentWnd) :
- CColorDialog(clrInit, dwFlags, pParentWnd)
- {
- }
- BEGIN_MESSAGE_MAP(CModeDialog, CColorDialog)
- //{{AFX_MSG_MAP(CModeDialog)
- //}}AFX_MSG_MAP
- END_MESSAGE_MAP()
- BOOL CModeDialog::OnInitDialog()
- {
- CColorDialog::OnInitDialog();
-
- // TODO: Add extra initialization here
-
- return TRUE; // return TRUE unless you set the focus to a control
- // EXCEPTION: OCX Property Pages should return FALSE
- }