You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

24 lines
637 B

  1. using System;
  2. using System.Collections.Generic;
  3. using System.Runtime.InteropServices;
  4. using System.Text;
  5. namespace Apewer.Internals.Interop
  6. {
  7. [StructLayout(LayoutKind.Sequential)]
  8. internal class DWM_BLURBEHIND
  9. {
  10. public uint dwFlags;
  11. [MarshalAs(UnmanagedType.Bool)]
  12. public bool fEnable;
  13. public IntPtr hRegionBlur;
  14. [MarshalAs(UnmanagedType.Bool)]
  15. public bool fTransitionOnMaximized;
  16. public const uint DWM_BB_ENABLE = 0x00000001;
  17. public const uint DWM_BB_BLURREGION = 0x00000002;
  18. public const uint DWM_BB_TRANSITIONONMAXIMIZED = 0x00000004;
  19. }
  20. }