WINDOWPLACEMENT.cs 508 B

123456789101112131415161718192021222324
  1. using System;
  2. using System.Drawing;
  3. using System.Runtime.InteropServices;
  4. namespace LYFZ.OtherExpansion.Win32.Struct
  5. {
  6. public struct WINDOWPLACEMENT
  7. {
  8. public int length;
  9. public int flags;
  10. public int showCmd;
  11. public Point ptMinPosition;
  12. public Point ptMaxPosition;
  13. public RECT rcNormalPosition;
  14. public static WINDOWPLACEMENT Default
  15. {
  16. get
  17. {
  18. WINDOWPLACEMENT structure = default(WINDOWPLACEMENT);
  19. structure.length = Marshal.SizeOf(structure);
  20. return structure;
  21. }
  22. }
  23. }
  24. }