gpt4 book ai didi

c# - PostMessage 不适用于其输出被重定向和异步读取的控制台窗口

转载 作者:太空宇宙 更新时间:2023-11-03 13:48:17 25 4
gpt4 key购买 nike

我有一个 GUI 应用程序可以读取显示输出的控制台应用程序并等待 F4 退出,我已经成功地启动了这个过程:

p.StartInfo.FileName = "consoleapp.exe";
p.StartInfo.RedirectStandardOutput = false;
p.StartInfo.RedirectStandardInput = false;
p.StartInfo.UseShellExecute = false;
p.StartInfo.CreateNoWindow = false;
p.StartInfo.WindowStyle = ProcessWindowStyle.Minimized;
p.OutputDataReceived += new System.Diagnostics.DataReceivedEventHandler(ConsoleOutputHandler);
p.Start();
p.BeginOutputReadLine();

我可以使用以下方式发送 F4:

PostMessage(p.MainWindowHandle, (uint)WM_KEYUP, (IntPtr) Keys.F4, (IntPtr) 0x3E0001 );

一切正常,直到我使用以下命令重定向 StandardOutput:

p.StartInfo.RedirectStandardOutput = true;

这样 PostMessage 仍会发送事件(由 Spy++ 检查),但控制台应用程序无法识别它。

更改“RedirectStandardInput”没有取得任何进展。

有什么想法吗?

最佳答案

我做到了!

我在我的应用启动时运行它:

AllocConsole();
uint codepage = GetACP();
SetConsoleOutputCP(codepage);

IntPtr handleconsole = new IntPtr();
handleconsole = GetConsoleWindow();

然后创建流程......

p.StartInfo.RedirectStandardOutput = true; 
p.StartInfo.RedirectStandardInput = false;
p.StartInfo.RedirectStandardError = true;

这为我的应用程序创建了一个控制台,在这样做之后,每个启动的进程都继承了该控制台,因此即使您调用 ShowWindow 来隐藏它,也很容易读取标准输出。

之后,我创建了一个 INPUT_RECORD 来发送 F4 键:

inHandle = GetStdHandle(STD_INPUT_HANDLE);
record[0].EventType = KEY_EVENT;
record[0].KeyEvent.bKeyDown = true;
record[0].KeyEvent.dwControlKeyState = 0;
record[0].KeyEvent.wRepeatCount = 1;
record[0].KeyEvent.wVirtualKeyCode = VirtualKeys.F4;
record[0].KeyEvent.wVirtualScanCode = MapVirtualKey(VK_F4, MAPVK_VK_TO_VSC);

record[1].EventType = KEY_EVENT;
record[1].KeyEvent.bKeyDown = false;
record[1].KeyEvent.dwControlKeyState = 0;
record[1].KeyEvent.wRepeatCount = 1;
record[1].KeyEvent.wVirtualKeyCode = VirtualKeys.F4;
record[1].KeyEvent.wVirtualScanCode = MapVirtualKey(VK_F4, MAPVK_VK_TO_VSC);

WriteConsoleInput(inHandle, record, 1, out written);

关于c# - PostMessage 不适用于其输出被重定向和异步读取的控制台窗口,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14510350/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com