WindowInterops.cs 4.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118
  1. using System.Runtime.InteropServices;
  2. namespace SinMaiLauncher.Interops
  3. {
  4. public class WindowInterops
  5. {
  6. private static class NativeWindow
  7. {
  8. [DllImport("user32.dll", SetLastError = true)]
  9. public static extern nint SetParent(nint hWndChild, nint hWndNewParent);
  10. [DllImport("user32.dll", SetLastError = true)]
  11. public static extern bool SetWindowLong(nint hWnd, int nIndex, uint dwNewLong);
  12. // 获取窗口样式
  13. [DllImport("user32.dll")]
  14. public static extern uint GetWindowLong(IntPtr hWnd, int nIndex);
  15. [DllImport("user32.dll", SetLastError = true)]
  16. public static extern bool GetWindowRect(nint hWnd, out RECT lpRect);
  17. [DllImport("user32.dll")]
  18. [return: MarshalAs(UnmanagedType.Bool)]
  19. private static extern bool SetWindowPos(IntPtr hWnd, IntPtr hWndInsertAfter, int X, int Y, int cx, int cy, uint uFlags);
  20. [DllImport("user32.dll", SetLastError = true)]
  21. public static extern bool MoveWindow(nint hWnd, int X, int Y, int nWidth, int nHeight, bool bRepaint);
  22. public const int GWL_STYLE = -16;
  23. public struct RECT
  24. {
  25. public int Left, Top, Right, Bottom;
  26. }
  27. public static class WindowStyles
  28. {
  29. public const uint WS_OVERLAPPED = 0x00000000;
  30. public const uint WS_POPUP = 0x80000000;
  31. public const uint WS_CHILD = 0x40000000;
  32. public const uint WS_MINIMIZE = 0x20000000;
  33. public const uint WS_VISIBLE = 0x10000000;
  34. public const uint WS_DISABLED = 0x08000000;
  35. public const uint WS_CLIPSIBLINGS = 0x04000000;
  36. public const uint WS_CLIPCHILDREN = 0x02000000;
  37. public const uint WS_MAXIMIZE = 0x01000000;
  38. public const uint WS_CAPTION = 0x00C00000;
  39. public const uint WS_BORDER = 0x00800000;
  40. public const uint WS_DLGFRAME = 0x00400000;
  41. public const uint WS_VSCROLL = 0x00200000;
  42. public const uint WS_HSCROLL = 0x00100000;
  43. public const uint WS_SYSMENU = 0x00080000;
  44. public const uint WS_THICKFRAME = 0x00040000;
  45. public const uint WS_GROUP = 0x00020000;
  46. public const uint WS_TABSTOP = 0x00010000;
  47. public const uint WS_MINIMIZEBOX = 0x00020000;
  48. public const uint WS_MAXIMIZEBOX = 0x00010000;
  49. }
  50. }
  51. public static void RemoveBorderVisible(IntPtr hWnd)
  52. {
  53. var oldVal = NativeWindow.GetWindowLong(hWnd, NativeWindow.GWL_STYLE);
  54. if (oldVal != NativeWindow.WindowStyles.WS_VISIBLE)
  55. NativeWindow.SetWindowLong(hWnd, NativeWindow.GWL_STYLE, NativeWindow.WindowStyles.WS_VISIBLE);
  56. }
  57. public static void SetParent(IntPtr hWnd, IntPtr hWndContainer)
  58. {
  59. NativeWindow.SetParent(hWnd, hWndContainer);
  60. }
  61. public static void FillWindow(IntPtr hWnd, Control container)
  62. {
  63. var rect = container.ClientRectangle;
  64. // 调整控制台窗口大小,使其填满容器
  65. NativeWindow.MoveWindow(hWnd, rect.Left, rect.Top, rect.Width, rect.Height, true);
  66. }
  67. public static bool RemoveBorderPopup(IntPtr hWnd)
  68. {
  69. var oldVal = NativeWindow.GetWindowLong(hWnd, NativeWindow.GWL_STYLE);
  70. if (oldVal != NativeWindow.WindowStyles.WS_POPUP)
  71. return NativeWindow.SetWindowLong(hWnd, NativeWindow.GWL_STYLE, NativeWindow.WindowStyles.WS_POPUP);
  72. return true;
  73. }
  74. public enum MoveWindowResult
  75. {
  76. Success,
  77. NoChange,
  78. FailGet,
  79. FailSet,
  80. }
  81. public static MoveWindowResult MoveWindow(IntPtr hWnd, int x, int y, int w, int h)
  82. {
  83. if (NativeWindow.GetWindowRect(hWnd, out var rc))
  84. {
  85. if (x != rc.Left ||
  86. y != rc.Top ||
  87. w != (rc.Right - rc.Left) ||
  88. h != (rc.Bottom - rc.Top))
  89. {
  90. return NativeWindow.MoveWindow(hWnd, x, y, w, h, false)
  91. ? MoveWindowResult.Success
  92. : MoveWindowResult.FailSet
  93. ;
  94. }
  95. return MoveWindowResult.NoChange;
  96. }
  97. return MoveWindowResult.FailGet;
  98. }
  99. }
  100. }