public static void AppendToWallpaperArea(IntPtr handle)
        {
            if (HandleUtil.NeedSeparation)
            {
                HandleUtil.SpawnWorker();
            }

            WindowNative.SetParent(handle, HandleUtil.WallpaperArea);
        }
        public static void RemoveFromWallpaperArea(IntPtr handle)
        {
            WindowNative.SetParent(handle, IntPtr.Zero);

            UpdateWallpaper();
        }