标签:
void CFloatWnd::OnUpdateTransparent(int iTransparent)
{
HINSTANCE hInst = LoadLibrary("User32.DLL");
if(hInst)
{
typedef BOOL (WINAPI *SLWA)(HWND,COLORREF,BYTE,DWORD);
SLWA pFun = NULL;
//取得SetLayeredWindowAttributes函数指针
pFun = (SLWA)GetProcAddress(hInst,"SetLayeredWindowAttributes");
if(pFun)
{
pFun(m_hWnd,0,iTransparent,2);
// 指定需要透明的背景颜色值,可用RGB()宏
}
FreeLibrary(hInst);
}
}
参数1:
窗口句柄
参数2:
透明Crkey的颜色,RGB(255,0,0)为红色全透明
参数3:
透明度:0全透 255 不透明
参数4:透明的方式
设置窗口的透明度。
标签:
原文地址:http://www.cnblogs.com/xdbleo/p/4300994.html