示例#1
0
        /// <summary>
        /// Creates a new instance of BlurBehind from the given handle
        /// </summary>
        /// <param name="hwnd">Handle of a form to which Blur Behind will be applied</param>
        public BlurBehind(IntPtr hwnd)
        {
            this.hwnd = hwnd;

            // Create properties structure
            properties = new BlurBehindProperties();
        }
示例#2
0
文件: BlurBehind.cs 项目: vladris/DWM
 private static extern void DwmEnableBlurBehindWindow(IntPtr hwnd, ref BlurBehindProperties blurBehind);
示例#3
0
文件: BlurBehind.cs 项目: vladris/DWM
        /// <summary>
        /// Creates a new instance of BlurBehind from the given handle
        /// </summary>
        /// <param name="hwnd">Handle of a form to which Blur Behind will be applied</param>
        public BlurBehind(IntPtr hwnd)
        {
            this.hwnd = hwnd;

            // Create properties structure
            properties = new BlurBehindProperties();
        }
示例#4
0
 private static extern void DwmEnableBlurBehindWindow(IntPtr hwnd, ref BlurBehindProperties blurBehind);