如题

解决方案 »

  1.   

    透明窗口:
    http://www.vckbase.com/document/viewdoc/?id=768
      

  2.   

    用函数 SetLayeredWindowAttributes具体的参数信息可以查 MSDN.
      

  3.   

    SetLayeredWindowAttributes(this->m_hWnd, RGB(255, 0, 0), 100, LWA_ALPHA);
    //RGB中指定的为透色,100为透明度(0--255),值越大透明
      

  4.   

    2000 - up 
    SetLayeredWindowAttributes(this->m_hWnd, RGB(255, 0, 0), 100, LWA_ALPHA);
    2000 low
    can`t
      

  5.   

    SetLayeredWindowAttributes(this->m_hWnd, RGB(255, 0, 0), 0, LWA_ALPHA);