程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> C語言 >> VC >> VC++ >> vc實現如何平滑地關閉窗口

vc實現如何平滑地關閉窗口

編輯:VC++

文章原始出處: http://www.codeguru.com
譯者:阿鬼 [[email protected]]
環境: VC6, win2000, winXP
轉載請與作者聯系

技術准備:
很簡單,就是使用 Windows API函數
SetLayeredWindowAttributes(HWND, COLORREF, BYTE,DWORD)
SetLayeredWindowAttributes函數在USER32.DLL中,你需要裝載該DLL並使用它。

第一步:

你必須改變窗口的樣式,將窗口變成具有圖層樣式,使用Windows API函數SetWindowLong。
在對話框窗體OnInitDialog()函數或者在文檔/視類型的窗體OnCreate()函數如下使用:

SetWindowLong(m_hWnd,
GWL_EXTYLE,
::GetWindowLong(m_hWnd, GWL_EXSTYLE) | WS_EX_LAYERED);


然後調用函數:

SetTransparent( m_hWnd, 0, 255 , LWA_ALPHA );
讓bAlpha的值為255,該函數如下:

// This function sets the transparency layered window
// by calling SetLayeredWindowAttributes API function.

BOOL SetTransparent(HWND hWnd, COLORREF crKey,
BYTE bAlpha, DWORD dwFlags)
{
BOOL bRet = TRUE;
typedef BOOL (WINAPI* lpfnSetTransparent)(HWND hWnd,
COLORREF crKey,
BYTE bAlpha,
DWORD dwFlags);

// Check that "USER32.dll" library has been
// loaded successfully...
if ( m_hUserDll )
{
lpfnSetTransparent pFnSetTransparent = NULL;
pFnSetTransparent =
(lpfnSetTransparent)GetProcAddress(m_hUserDll,
"SetLayeredWindowAttributes");

if (pFnSetTransparent )
bRet = pFnSetTransparent(hWnd, crKey, bAlpha, dwFlags);
else
bRet = FALSE;
} // if( m_hUserDll )

return bRet;
} // End of SetTransparent function


第二步:

  在窗體OnClose()中調用CloseSmoothly()函數,該函數如下:


void CloseSmoothly()
{
// Increase transparency one percent each time...
for(int nPercent=100; nPercent >= 0 ;nPercent--)
SetTransparent( m_hWnd, 0, 255 * nPercent/100, LWA_ALPHA);
}

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved