创建一个单文档的MFC程序
在view视图中加入三个颜色变量如下所示:
public:
 int m_nGreen;
 int m_nBlue;
 int m_nRed;
通过向导建立OnInitialUpdate函数,如下所示
void CColorDocumentView::OnInitialUpdate()
{
 CView::OnInitialUpdate();
 
 // TODO: Add your specialized code here and/or call the base class
 SetTimer(0,1000,NULL);//设置计时器时间,一秒跳转一次。第三个参数设置为NULL,默认调用OnTimer函数
 
}
通过向导建立OnTimer函数,如下所示
void CColorDocumentView::OnTimer(UINT nIDEvent)
{
 // TODO: Add your message handler code here and/or call default
  if(m_nRed<=205)
  {
        m_nRed+=20;
  }else if(m_nRed==255)
  {
   m_nRed=0;
  }else
  {
        m_nRed=255;
  }

转载于http://www.iteamsky.com/index.php?a=article&id=85