1. 程式人生 > >Windows程式設計裡,怎樣設定視窗背景透明

Windows程式設計裡,怎樣設定視窗背景透明

就是在case WM_CREATE :下加
SetWindowLong(hwnd,GWL_EXSTYLE,GetWindowLong(hwnd,GWL_EXSTYLE)|WS_EX_LAYERED);  
  SetLayeredWindowAttributes(hwnd, 0,200,LWA_ALPHA);
這樣不行,這樣整個視窗,包括時鐘都是透明的