MFC 对话框 开启 Aero 毛玻璃 半透明 效果 (一)

必备要求:

1. Vista 及以上操作系统。

2. VS2008 SP1 及以上编译环境。

导入下列文件:


#include  
#pragma comment (lib , "dwmapi.lib" )

对话框的基类要选择 CDialogEx,而不是 CDialog。

在 OnInitDialog() 中添加下列代码:


    BOOL bDwm ;
    DwmIsCompositionEnabled (&bDwm );
    if (bDwm )
    { 
        MARGINS mrg = {-1}; 
        DwmExtendFrameIntoClientArea (m_hWnd , &mrg );
        SetBackgroundColor (RGB (0, 0, 0));
    }

效果图:


你可能感兴趣的:(GUI)