コード例 #1
0
ファイル: BlurBehind.cs プロジェクト: nguyenvuducthuy/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();
        }
コード例 #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
ファイル: BlurBehind.cs プロジェクト: nguyenvuducthuy/DWM
 private static extern void DwmEnableBlurBehindWindow(IntPtr hwnd, ref BlurBehindProperties blurBehind);