ConsoleInterops.cs 4.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126
  1. using System.Runtime.InteropServices;
  2. namespace SinMaiLauncher.Interops;
  3. internal static class ConsoleInterops
  4. {
  5. private static class NativeConsole
  6. {
  7. [DllImport("kernel32.dll", SetLastError = true)]
  8. [return: MarshalAs(UnmanagedType.Bool)]
  9. public static extern bool AllocConsole();
  10. [DllImport("kernel32.dll")]
  11. public static extern nint GetStdHandle(int nStdHandle);
  12. [DllImport("kernel32.dll")]
  13. public static extern bool SetConsoleMode(nint hConsoleHandle, int dwMode);
  14. [DllImport("kernel32.dll", SetLastError = true)]
  15. public static extern nint GetConsoleWindow();
  16. [DllImport("kernel32.dll", SetLastError = true)]
  17. public static extern bool AttachConsole(uint dwProcessId);
  18. [DllImport("kernel32.dll", SetLastError = true, ExactSpelling = true)]
  19. public static extern bool FreeConsole();
  20. [DllImport("kernel32.dll")]
  21. public static extern bool SetConsoleCtrlHandler(ConsoleCtrlDelegate? HandlerRoutine, bool Add);
  22. [DllImport("kernel32.dll", SetLastError = true)]
  23. public static extern bool GenerateConsoleCtrlEvent(ConsoleCtrlEvent ctrlEvent, uint processGroupId);
  24. public delegate bool ConsoleCtrlDelegate(uint ctrlType);
  25. // 控制台控制事件类型
  26. public enum ConsoleCtrlEvent
  27. {
  28. CTRL_C_EVENT = 0,
  29. CTRL_BREAK_EVENT = 1
  30. }
  31. public const int STD_INPUT_HANDLE = -10;
  32. public const int ENABLE_QUICK_EDIT_MODE = 0x0040;
  33. public const int ENABLE_EXTENDED_FLAGS = 0x0080;
  34. }
  35. public static class ExternalProcess
  36. {
  37. public static IntPtr? GetConsoleWindow(uint pid)
  38. {
  39. if (NativeConsole.AttachConsole(pid) == false) return null;
  40. var handle = NativeConsole.GetConsoleWindow();
  41. return handle;
  42. }
  43. public static bool DisableQuickEdit(uint pid)
  44. {
  45. if (NativeConsole.AttachConsole(pid) == false) return false;
  46. nint handle = NativeConsole.GetStdHandle(NativeConsole.STD_INPUT_HANDLE);
  47. // 禁用快速编辑模式
  48. int mode = NativeConsole.ENABLE_EXTENDED_FLAGS;
  49. return NativeConsole.SetConsoleMode(handle, mode);
  50. }
  51. public enum ResultOfSendCtrlC
  52. {
  53. Success = 0,
  54. AttachConsoleFailed = 1,
  55. GenerateCtrlEventFailed = 2
  56. }
  57. public static ResultOfSendCtrlC SendCtrlC(uint processId)
  58. {
  59. // 尝试附加到指定进程的控制台
  60. if (!NativeConsole.AttachConsole(processId)) return ResultOfSendCtrlC.AttachConsoleFailed;
  61. // 设置控制处理程序以避免自己进程接收到信号
  62. NativeConsole.SetConsoleCtrlHandler(null, true);
  63. // 发送CTRL_C_EVENT
  64. if (!NativeConsole.GenerateConsoleCtrlEvent(NativeConsole.ConsoleCtrlEvent.CTRL_C_EVENT, 0))
  65. {
  66. return ResultOfSendCtrlC.GenerateCtrlEventFailed;
  67. }
  68. // 释放控制台
  69. NativeConsole.FreeConsole();
  70. // 如果没有异常发生,退出代码为Success
  71. return ResultOfSendCtrlC.Success;
  72. }
  73. }
  74. public static class CurrentProcess
  75. {
  76. public static void ConsoleAllocate() => NativeConsole.AllocConsole();
  77. public static void ConsoleDisableQuickEdit()
  78. {
  79. nint handle = NativeConsole.GetStdHandle(NativeConsole.STD_INPUT_HANDLE);
  80. // 禁用快速编辑模式
  81. int mode = NativeConsole.ENABLE_EXTENDED_FLAGS;
  82. NativeConsole.SetConsoleMode(handle, mode);
  83. }
  84. public static void ConsoleWindowSetParent(Control container)
  85. {
  86. var consoleHandle = NativeConsole.GetConsoleWindow();
  87. // 将控制台窗口设置为 Panel 的子窗口
  88. WindowInterops.SetParent(consoleHandle, container.Handle);
  89. // 修改控制台窗口样式,去掉边框
  90. WindowInterops.RemoveBorderVisible(consoleHandle);
  91. }
  92. public static void ConsoleWindowFill(Control container)
  93. {
  94. WindowInterops.FillWindow(NativeConsole.GetConsoleWindow(), container);
  95. }
  96. }
  97. }