gpt4 book ai didi

c# - 无法将 key (字符串)发送到记事本

转载 作者:行者123 更新时间:2023-11-30 21:55:13 24 4
gpt4 key购买 nike

我认为代码非常好,但事实并非如此。我正在尝试向我的记事本添加一些文本,如下所示:

string text = "TESTTESTTESTTEST";

[DllImport("user32.dll")]
private static extern int SetForegroundWindow(IntPtr hWnd);

public void EditTxtFile(string text)
{
Process p = Process.GetProcessesByName("notepad").FirstOrDefault();
if (p != null)
{
IntPtr handle = p.MainWindowHandle;
SetForegroundWindow(handle);
SendKeys.SendWait(text);
p.Kill(); //also process doesn't shoutdown
}
}

当我尝试调试此函数(实际上是 SendKeys)时,出现了该消息:

Changes are not allowed while code is runnig.

如果它很重要,我会尝试从网页/应用程序对其进行编辑。

最佳答案

问题是,Visual Studio 在遇到断点时捕获 Focus,然后将 SendKeys 发送到 Visual Studio 而不是记事本,这会产生错误。

您可以执行以下操作:

右键单击断点并选择“当命中...”

在那里你可以输出任何你想要的而记事本不会失去焦点

关于c# - 无法将 key (字符串)发送到记事本,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32501972/

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