c# - 无边框形式的 Windows 7 风格 Dropshadow

标签 c# .net winforms user-interface windows-7

Short Version:

目标:在 C# 中的无边界 WinForm 中深沉、黑暗的 Windows 7 阴影


已知的现有解决方案 1: 使用 CreateParams 的简单 XP 风格投影。

问题:太弱、太轻、太丑。


已知现有解决方案2:用位图替换form的GDI。

问题:无法使用控件,只能用作启动画面。


这篇文章的目标:找到这个问题的中间解决方案或一个更好的解决方案。

. . .

Long Version:

(编辑:如果不清楚的话,我指的是沿着任何窗体边框的阴影。) 我知道有一种方法可以使用 C# 制作 XP 风格的阴影:

C# 代码 1 - 简单的 XP 风格阴影(问题:变亮、变弱、变丑)

// Define the CS_DROPSHADOW constant
private const int CS_DROPSHADOW = 0x00020000;

// Override the CreateParams property
protected override CreateParams CreateParams
{
    get
    {
        CreateParams cp = base.CreateParams;
        cp.ClassStyle |= CS_DROPSHADOW;
        return cp;
    }
}

但是,我正在尝试弄清楚如何使它们看起来像 Windows 7 中的那样(更深和更大的阴影),但无法找出最佳方法。

我现在创建了一个方法,它可以让我覆盖整个 GDI 表单并看起来像启动画面(不是我的功劳):

C#代码2:用Bitmap替换form GDI(问题:不能使用form控件,GUI难维护)

    public void SetBitmap(Bitmap bitmap, byte opacity)
    {
        if (bitmap.PixelFormat != PixelFormat.Format32bppArgb)
            throw new ApplicationException("The bitmap must be 32ppp with alpha-channel.");

        // 1. Create a compatible DC with screen;
        // 2. Select the bitmap with 32bpp with alpha-channel in the compatible DC;
        // 3. Call the UpdateLayeredWindow.

        IntPtr screenDc = Win32.GetDC(IntPtr.Zero);
        IntPtr memDc = Win32.CreateCompatibleDC(screenDc);
        IntPtr hBitmap = IntPtr.Zero;
        IntPtr oldBitmap = IntPtr.Zero;

        try
        {
            hBitmap = bitmap.GetHbitmap(Color.FromArgb(0));  // grab a GDI handle from this GDI+ bitmap
            oldBitmap = Win32.SelectObject(memDc, hBitmap);

            Win32.Size size = new Win32.Size(bitmap.Width, bitmap.Height);
            Win32.Point pointSource = new Win32.Point(0, 0);
            Win32.Point topPos = new Win32.Point(Left, Top);
            Win32.BLENDFUNCTION blend = new Win32.BLENDFUNCTION();
            blend.BlendOp = Win32.AC_SRC_OVER;
            blend.BlendFlags = 0;
            blend.SourceConstantAlpha = opacity;
            blend.AlphaFormat = Win32.AC_SRC_ALPHA;

            Win32.UpdateLayeredWindow(this.Handle, screenDc, ref topPos, ref size, memDc, ref pointSource, 0, ref blend, Win32.ULW_ALPHA);
        }
        finally
        {
            Win32.ReleaseDC(IntPtr.Zero, screenDc);
            if (hBitmap != IntPtr.Zero)
            {
                Win32.SelectObject(memDc, oldBitmap);
                Win32.DeleteObject(hBitmap);
            }
            Win32.DeleteDC(memDc);
        }
    }


    protected override CreateParams CreateParams
    {
        get
        {
            CreateParams cp = base.CreateParams;
            cp.ExStyle |= 0x00080000; // This form has to have the WS_EX_LAYERED extended style
            return cp;
        }
    }

但是,这确实为我提供了完整的 32 位背景(因为我需要手动添加阴影),但我无法创建可见的表单元素。

所以基本上,我试图找出这两种方法之间的中间值。可以在不丢失其他功能/导致过度重绘要求的情况下给我深色阴影的东西。

最佳答案

好的,经过大约 4 小时的头脑 Storm 和编码,我终于制定了一个解决方案。基本上,我制作了两种形式。

形式 #1:通过修改和组合 8 张图像(每个方向 4 个角渐变 + 4 个线性渐变)创建阴影,并使用我在上面发布的第二个代码将它们设置为背景(< strong>C# 代码 2:用位图替换表单 GDI)。代码几乎可以解释它。

public partial class Dropshadow : Form
{

    public Dropshadow(Form parentForm)
    {
        /*This bit of code makes the form click-through. 
          So you can click forms that are below it in z-space */
        int wl = GetWindowLong(this.Handle, -20);
        wl = wl | 0x80000 | 0x20;
        SetWindowLong(this.Handle, -20, wl);

        InitializeComponent();

        //Makes the start location the same as parent.
        this.StartPosition = parentForm.StartPosition;

        parentForm.Activated += ParentForm_Activated; //Fires on parent activation to do a this.BringToFront() 
        this.Deactivate += This_Deactivated; //Toggles a boolean that ensures that ParentForm_Activated does fire when clicking through (this)
        parentForm.Closed += ParentForm_Closed; //Closes this when parent closes
        parentForm.Move += ParentForm_Move; //Follows movement of parent form

        //Draws border with standard bitmap modifications and merging
        /* Omitted function to avoid extra confusion */
        Bitmap getShadow = DrawBlurBorder(parentForm.ClientSize.Width, parentForm.ClientSize.Height);
        /* **This code was featured in the original post:** */
        SetBitmap(getShadow, 255); //Sets background as 32-bit image with full alpha.

        this.Location = Offset; //Set within DrawBlurBorder creates an offset 

    }
    private void ParentForm_Activated(object o, EventArgs e)
    {
        /* Sets this form on top when parent form is activated.*/
        if (isBringingToFront)
        { 
            /*Hopefully prevents recusion*/
            isBringingToFront = false;
            return;
        }

        this.BringToFront();


        /* Some special tweaks omitted to avoid confusion */
    }
    private void This_Deactivated(object o, EventArgs e)
    {
        /* Prevents recusion. */
        isBringingToFront = true;
    }
    /* Closes this when parent form closes. */
    private void ParentForm_Closed(object o, EventArgs e)
    {
        this.Close();
    }
    /* Adjust position when parent moves. */
    private void ParentForm_Move(object o, EventArgs e)
    {
        if(o is Form)
            this.Location = new Point((o as Form).Location.X + Offset.X, (o as Form).Location.Y + Offset.Y);
    }
 }

Form #2:这只是在启动时启动了 dropshadow 表单,我还创建了一些接口(interface)以允许进一步的集成和灵 active ,我省略了这些接口(interface)以避免额外的混淆。确保 Dropshadow 表单不会从事件表单中取消鼠标点击的基本方法,并且如果 Dropshadow 表单位于顶部,则不会强制用户必须单击按钮两次。

关于c# - 无边框形式的 Windows 7 风格 Dropshadow,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8793445/

相关文章:

c# - 使用 MessageBox OK 按钮退出事件处理程序

javascript - 使用CEFSharp编辑&lt;textarea&gt;

c# - 程序集不可用错误

c# - 如何在 dotnetnuke 框架中创建 Web 应用程序?

c# - 为什么我的客户端得到 "System.Uri cannot be serialized because it does not have a parameterless constructor."?

c# - 编译查询和普通查询,对我 Entity Framework 来说似乎没有区别

c# - 如何在 .NET 中一步裁剪和调整图像大小

c# - 如何并行和串行处理集合中的项目

c# - 在 TreeView 中获取所有选中节点及其子节点的列表

c# - 打开 C : Directly with `FileStream` without `CreateFile` API