設定windows視窗半透明(使用SetLayeredWindowAttributes API函數)

來源:互聯網
上載者:User

標籤:

    所需函數原型:BOOL WINAPI SetLayeredWindowAttributes(HWND hWnd,  COLORREFcrKey,  BYTE bAlpha,  DWORD flag);
       參數含義:
       hWnd: 所要設定的視窗控制代碼。
       flag:    透明方式,可取兩個值:LWA_COLORKEY(其值定義為0x1)和LWA_ALPHA(其值定義為0x2)。可取二者的組合。
       crKey: 掩碼顏色,當flag取值為LWA_COLORKEY時,視窗中顏色值等於crKey的地方將變為全透明。否則此參數無效。
       bAlpha:視窗的透明度,取值範圍0~255。當flag含有LWA_ALPHA標識時有效。

       在MFC中的調用方法:SetLayeredWindowAttributes(m_hWnd, RGB(0, 0, 0), 200, 0x1 | 0x2);

       需要注意的是,在VC6.0中,標頭檔沒有這個函數的聲明,因此只能採用以下方法先載入含有此函數的DLL模組,然後尋找到該函數入口地址再調用之。
      HMODULE hInst = LoadLibrary("user32.dll");
      if(hInst)
      {
               typedef BOOL (WINPAI*SETALPHA)(HWND, COLORREF, BYTE, DWORD); //定義函數指標類型
               SETALPHA SetAlpha = (SETALPHA)GetProcAddress(hInst, "SetLayeredWindowAttributes");
               if(SetAlpha)
                        SetAlpha(m_hWnd, RGB(0, 0, 0), 200, 0x1 | 0x2);

               FreeLibrary(hInst);
      }

http://blog.csdn.net/yjwffgip456/article/details/43968247

設定windows視窗半透明(使用SetLayeredWindowAttributes API函數)

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.