码迷,mamicode.com
首页 > Windows程序 > 详细

Win32 设置窗口透明度 SetLayerTransparent

时间:2016-12-14 18:35:59      阅读:417      评论:0      收藏:0      [点我收藏+]

标签:stat   win   ati   set   code   设置   win32   style   hwnd   

注意:

在调用SetLayeredWindowAttributes 之前,需要给窗口加上WS_EX_LAYERED属性,否则会无效

void SetLayerTransparent(HWND hWnd)
{
    static bool isTransParent = false;
    if (isTransParent == false)
    {
        DWORD exStyle = ::GetWindowLong(hWnd, GWL_EXSTYLE);
        exStyle |= WS_EX_LAYERED;
        ::SetWindowLong(hWnd, GWL_EXSTYLE, exStyle);
        ::SetLayeredWindowAttributes(hWnd, RGB(0, 0, 0), 128, LWA_ALPHA);
        isTransParent = true;
    }
    else
    {
        ::SetLayeredWindowAttributes(hWnd, RGB(0, 0, 0), 255, LWA_ALPHA);
        isTransParent = false;
    }
}

 

Win32 设置窗口透明度 SetLayerTransparent

标签:stat   win   ati   set   code   设置   win32   style   hwnd   

原文地址:http://www.cnblogs.com/tangxin-blog/p/6180299.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!