添加启动类
添加.h和cpp #pragma once #include "afxwin.h" class mySplash : public CWnd { DECLARE_DYNAMIC(mySplash) protected: DECLARE_MESSAGE_MAP() public: CBitmap m_bitmap; void Create(UINT nBitmapID); afx_msg void OnPaint(); afx_msg void OnTimer(UINT_PTR nIDEvent); public: mySplash(void); ~mySplash(void); }; #include "stdafx.h" #include "mySplash.h" IMPLEMENT_DYNAMIC(mySplash, CWnd) mySplash::mySplash() { } mySplash::~mySplash() { } BEGIN_MESSAGE_MAP(mySplash, CWnd) ON_WM_PAINT() ON_WM_TIMER() END_MESSAGE_MAP...