3
我使用SetLayeredWindowAttributer使分層窗口的特定顏色透明。SetLayeredWindowAttributes無法在Windows 7上工作
這適用於Windows XP,VISTA。但是當我在Windows 7上使用它時,它不起作用。
SetLayeredWindowAttributes(hWnd, RGB(0xff,0xff,0xff), 0, LWA_COLORKEY);
當我使用LWA_ALPHA時,它也可以。 問題是,我不能夠做一個特定的顏色透明在Windows 7
下面的語句可以在Windows 7
SetLayeredWindowAttributes(hWnd,RGB(0xff,0xff,0xff), 100, LWA_ALPHA);
是否有可能呈現的顏色值不匹配的顏色值SetLayeredWindowAttributes?