Aero drop - 无边框上的阴影?

时间:2012-10-05 10:03:52

标签: winforms visual-c++ c++-cli drop-shadow createparams

我尝试使用以下代码来覆盖CreateParams。

protected: virtual property System::Windows::Forms::CreateParams^ CreateParams
    {
        System::Windows::Forms::CreateParams^ get() override
        {
            System::Windows::Forms::CreateParams^ cp = Form::CreateParams;
            cp->ClassStyle::set(CS_DROPSHADOW);
            return cp;


        }
    }

工作正常。但它没有给出理想的结果。

这是我想要的影子......

This is the type of Shadow I wanted.

这就是我从代码中得到的......

This is what I got from the code.

我在想是否有办法获得Drop-Shadows的航空风格?

0 个答案:

没有答案