Program.cs 2.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071
  1. // See https://aka.ms/new-console-template for more information
  2. using System.Runtime.InteropServices;
  3. // 常量定义
  4. const int GWL_STYLE = -16;
  5. const int WS_BORDER = 0x00800000; // 边框
  6. const int WS_CAPTION = 0x00C00000; // 标题栏
  7. const int WS_THICKFRAME = 0x00040000; // 可调整大小的框
  8. const int SW_SHOWNORMAL = 1;
  9. if (args.Length < 5)
  10. {
  11. Console.WriteLine("用法: WndTricker <窗口标题> <x坐标> <y坐标> <宽度> <高度>");
  12. return;
  13. }
  14. // 从命令行参数获取窗口标题、x、y、宽度和高度
  15. string windowTitle = args[0];
  16. if (!int.TryParse(args[1], out int x) ||
  17. !int.TryParse(args[2], out int y) ||
  18. !int.TryParse(args[3], out int width) ||
  19. !int.TryParse(args[4], out int height))
  20. {
  21. Console.WriteLine("参数无效,请确保 x, y, 宽度和高度是整数");
  22. return;
  23. }
  24. // 查找窗口
  25. IntPtr hWnd = FindWindow(null, windowTitle);
  26. if (hWnd == IntPtr.Zero)
  27. {
  28. Console.WriteLine("窗口未找到");
  29. return;
  30. }
  31. // 去掉窗口的边框
  32. int currentStyle = GetWindowLong(hWnd, GWL_STYLE);
  33. SetWindowLong(hWnd, GWL_STYLE, currentStyle & ~(WS_BORDER | WS_CAPTION | WS_THICKFRAME));
  34. // 移动窗口到指定位置并设置大小
  35. SetWindowPos(hWnd, IntPtr.Zero, x, y, width, height, 0);
  36. // 显示窗口
  37. ShowWindow(hWnd, SW_SHOWNORMAL);
  38. Console.WriteLine($"窗口已去掉边框并移动到 ({x}, {y}),大小已设置为 {width}x{height}");
  39. return;
  40. // Windows API 函数声明
  41. [DllImport("user32.dll", CharSet = CharSet.Auto)]
  42. static extern IntPtr FindWindow(string lpClassName, string lpWindowName);
  43. [DllImport("user32.dll")]
  44. static extern int SetWindowLong(IntPtr hWnd, int nIndex, int dwNewLong);
  45. [DllImport("user32.dll")]
  46. static extern bool SetWindowPos(IntPtr hWnd, IntPtr hWndInsertAfter, int x, int y, int width, int height, uint uFlags);
  47. [DllImport("user32.dll")]
  48. static extern bool ShowWindow(IntPtr hWnd, int nCmdShow);
  49. // 获取窗口样式
  50. [DllImport("user32.dll")]
  51. static extern int GetWindowLong(IntPtr hWnd, int nIndex);