其他分享
首页 > 其他分享> > 透明窗体显示 GetProcAddress

透明窗体显示 GetProcAddress

作者:互联网

透明窗体显示 2010-8-12 13:47
 
 

查了相关资料,通过SetLayeredWindowAttributesAPI来实现,参见如下函数代码

 

void CPopUI::SetTransparent(void)
{
 SetWindowLong(this->GetSafeHwnd(), GWL_EXSTYLE,
    GetWindowLong(this->GetSafeHwnd(), GWL_EXSTYLE) | WS_EX_LAYERED);
 HINSTANCE hInst = LoadLibrary(L"User32.DLL");
 if(hInst)
 {
   typedef BOOL (WINAPI * MYFUNC)(HWND,COLORREF,BYTE,DWORD);
   MYFUNC fun=NULL;

   //取得SetLayeredWindowAttributes函数指针
   fun=(MYFUNC)GetProcAddress(hInst, "SetLayeredWindowAttributes");
   if(fun)
   fun(this->GetSafeHwnd(), 0, 128, 2);
   FreeLibrary(hInst);
 }
 SetLayeredWindowAttributes(RGB(0, 0, 0), 20, LWA_ALPHA);
}

标签:透明,MYFUNC,SetLayeredWindowAttributes,窗体,EXSTYLE,GetSafeHwnd,fun,GetProcAddress,h
来源: https://www.cnblogs.com/ioriwellings/p/15493469.html