/// <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(); }
private static extern void DwmEnableBlurBehindWindow(IntPtr hwnd, ref BlurBehindProperties blurBehind);