亲宝软件园·资讯

展开

C# 无边框窗体边框阴影效果 C# 无边框窗体边框阴影效果的简单实现

人气:0
想了解C# 无边框窗体边框阴影效果的简单实现的相关内容吗,在本文为您仔细讲解C# 无边框窗体边框阴影效果的相关知识和一些Code实例,欢迎阅读和指正,我们先划重点:C#,无边框窗体,边框阴影效果,下面大家一起来学习吧。

通过下面代码在构造函数中调用方法 SetShadow();

即可实现无边框窗体的阴影效果了

需要添加命名空间 using System.Runtime.InteropServices;

复制代码 代码如下:

private const int CS_DropSHADOW = 0x20000;
        private const int GCL_STYLE = (-26);       

        [DllImport("user32.dll", CharSet = CharSet.Auto)]
        public static extern int SetClassLong(IntPtr hwnd, int nIndex, int dwNewLong);
        [DllImport("user32.dll", CharSet = CharSet.Auto)]
        public static extern int GetClassLong(IntPtr hwnd, int nIndex);   

        private void SetShadow()
        {
            SetClassLong(this.Handle, GCL_STYLE, GetClassLong(this.Handle, GCL_STYLE) | CS_DropSHADOW);
        }

加载全部内容

相关教程
猜你喜欢
用户评论