程序启动画面
2010-07-11 20:43:35 来源:WEB开发网核心提示:步骤三.在void CMainWindowApp::InitInstance()当中初始化启动画面的相关设定BOOL CMainWindowApp::InitInstance(){CSplashWindow *m_pSplashWindow = new CSplashWindow;m_pSplashWindow->
步骤三.
在void CMainWindowApp::InitInstance()当中初始化启动画面的相关设定
BOOL CMainWindowApp::InitInstance()
{
CSplashWindow *m_pSplashWindow = new CSplashWindow;
m_pSplashWindow->CreateSplash();
m_pSplashWindow->CenterWindow();
m_pSplashWindow->ShowWindow(SW_SHOW);
m_pSplashWindow->UpdateWindow();
Sleep(3000); //Delay 3 Seconds
m_pSplashWindow->DestroyWindow(); //Destroy Window
delete m_pSplashWindow;
m_pMainWnd = new CMainWindow;
m_pMainWnd->ShowWindow(SW_SHOW);
m_pMainWnd->UpdateWindow();
return true;
}
CMainWindowApp MainWindowApp;
如果您对此程序有任何问题欢迎来信指教r39710@giga.net.tw
本文配套源码
更多精彩
赞助商链接