資源簡介
C++實戰(zhàn)源碼-顏色變了(入門級實例326).zip
代碼片段和文件信息
//?ColorProgress.cpp?:?implementation?file
//
#include?“stdafx.h“
#include?“Progress.h“
#include?“ColorProgress.h“
#ifdef?_DEBUG
#define?new?DEBUG_NEW
#undef?THIS_FILE
static?char?THIS_FILE[]?=?__FILE__;
#endif
/////////////////////////////////////////////////////////////////////////////
//?CColorProgress
CColorProgress::CColorProgress()
{
}
CColorProgress::~CColorProgress()
{
}
BEGIN_MESSAGE_MAP(CColorProgress?CProgressCtrl)
//{{AFX_MSG_MAP(CColorProgress)
ON_WM_PAINT()
//}}AFX_MSG_MAP
END_MESSAGE_MAP()
/////////////////////////////////////////////////////////////////////////////
//?CColorProgress?message?handlers
void?CColorProgress::OnPaint()?
{
// CPaintDC?dc(this);?//?device?context?for?painting
//?TODO:?Add?your?message?handler?code?here
PAINTSTRUCT?ps;
CDC*?pDC?=?BeginPaint(&ps); //開始繪制
int?nPos?=?GetPos(); //獲取當前進度條的位置
CRect?clientRC;
GetClientRect(clientRC); //獲取客戶區(qū)域
pDC->SetBkMode(TRANSPARENT);
?屬性????????????大小?????日期????時間???名稱
-----------?---------??----------?-----??----
?????文件????????1743??2009-02-24?16:57??Progress\ColorProgress.cpp
?????文件????????1152??2009-02-24?16:57??Progress\ColorProgress.h
?????文件????????1304??2010-10-27?13:22??Progress\Progress.clw
?????文件????????2091??2009-02-24?16:13??Progress\Progress.cpp
?????文件????????4394??2010-10-06?16:14??Progress\Progress.dsp
?????文件?????????539??2009-02-24?16:13??Progress\Progress.dsw
?????文件????????1346??2009-02-24?16:13??Progress\Progress.h
?????文件????????5470??2010-10-06?16:13??Progress\Progress.rc
?????文件????????4387??2009-02-24?16:16??Progress\ProgressDlg.cpp
?????文件????????1403??2009-02-24?16:17??Progress\ProgressDlg.h
?????文件?????????731??2010-10-06?16:13??Progress\resource.h
?????文件?????????210??2009-02-24?16:13??Progress\StdAfx.cpp
?????文件????????1054??2009-02-24?16:13??Progress\StdAfx.h
?????文件??????156342??2010-10-06?16:13??Progress\res\038.bmp
?????文件????????5694??2005-10-08?16:28??Progress\res\Progress.ico
?????文件?????????400??2009-02-24?16:13??Progress\res\Progress.rc2
?????文件????????8704??2010-06-22?09:40??Progress\res\Thumbs.db
評論
共有 條評論