找了半天沒找實現啟動畫面來個淡入淡出的代碼,只好自己寫了個,呵呵,還不錯拿給大家看看。
#undef WINVER //取消原有版本定義,重新定義版本
#define WINVER 0x5000 //為了使AnimateWindow函數可用
#include <afxwin.h>
然後在相關文件分別加入OnCreate,OnClose,OnEraseBkgnd和OnTimer消息函數。記得在相關構析函數內加入 :
SetTimer(1, 3000, NULL); //設定定時器1,定時3秒
OnCreate消息函數裡添加淡入窗口或者背景位圖代碼:
BOOL CSplashWnd::OnCreate(LPCREATESTRUCT lpcs)
{
CenterWindow(); //窗口位於屏幕中心
AnimateWindow(GetSafeHwnd(), 500, AW_BLEND); //淡入圖片0.5秒
return true;
}
OnClose消息函數是添加淡出窗口或背景位圖代碼:
void CSplashWnd::OnClose()
{
AnimateWindow(GetSafeHwnd(), 500, AW_BLEND | AW_HIDE); //淡出圖片0.5秒
CWnd::OnClose();
}
OnEraseBkgnd消息函數是添加背景 位圖 :
BOOL CSplashWnd::OnEraseBkgnd(CDC *pDC)
{
DDB mSplashBitmap;
mSplashBitmap.DisplayDDB(pDC, IDB_SPLASH); //顯示位圖資源IDB_SPLASH
return true;
}
OnTimer消息函數是添加定時關閉代碼:
void CSplashWnd::OnTimer(UINT nIDEvent)
{
KillTimer(1); //關閉定時器1
PostMessage(WM_CLOSE, 0, 0); //發送關閉窗口信息
}
是不是很簡單,我看有些關於位圖和窗口的淡入淡出很復雜,我剛學VC不久,看不懂。只好想出這簡便的辦法。有什麼建議和意見歡迎大家指出!