gpt4 book ai didi

C# SendKeys.SendWait 到另一个进程的对话框 (notepad.exe)

转载 作者:太空宇宙 更新时间:2023-11-03 11:26:02 29 4
gpt4 key购买 nike

我正在尝试在 C# 中执行以下操作:

  • 打开一个新进程(notepad.exe)
  • 输入一些文本(使用 SendKeys)
  • 关闭记事本(处理任何确认对话框)

这是我得到的

Process p = new Process();
p.StartInfo.Filename = "notepad.exe";
p.Start();

// use the user32.dll SetForegroundWindow method
SetForegroundWindow( p.MainWindowHandle ); // make sure notepad has focus

SendKeys.SendWait( "some text" );

SendKeys.SendWait( "%f" ); // send ALT+f
SendKeys.SendWait( "x" ); // send x = exit

// a confirmation dialog appears

所有这一切都按预期工作,但现在在我发送 ALT+f+x 后我得到了“你想保存更改为无标题”对话框,我想从内部关闭它我的应用程序通过“按”'n'表示“不保存”。然而

SendKeys.SendWait( "n" ); 

仅当我的应用程序没有失去焦点时(在 ALT+f+x 之后)才有效。如果是这样,我会尝试返回使用

SetForegroundWindow( p.MainWindowHandle );

这会将焦点设置到主记事本窗口而不是确认对话框。我使用了 user32.dll 中的 GetForegroundWindow 方法,发现对话框句柄与记事本句柄不同(这有点道理)但是 SetForegroundWindow 甚至无法使用使用对话框窗口句柄

知道如何将焦点返回到对话框以便成功使用 SendKeys 吗?

完整代码

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

[DllImport("user32.dll")]
static extern IntPtr GetForegroundWindow();

[DllImport("User32.DLL")]
static extern bool ShowWindow(IntPtr hWnd, int nCmdShow);

public const int SW_RESTORE = 9;

...

Process p = new Process();
p.StartInfo.FileName = "notepad.exe";
p.Start();
Thread.Sleep( 1000 );

SendKeys.SendWait( "some text" );
SendKeys.SendWait( "%f" ); // send ALT+F
SendKeys.SendWait( "x" ); // send x = exit

IntPtr dialogHandle = GetForegroundWindow();
System.Diagnostics.Trace.WriteLine( "notepad handle: " + p.MainWindowHandle );
System.Diagnostics.Trace.WriteLine( "dialog handle: " + dialogHandle );

Thread.Sleep( 5000 ); // switch to a different application to lose focus

SetForegroundWindow( p.MainWindowHandle );
ShowWindow( dialogHandle, SW_RESTORE );

Thread.Sleep( 1000 );
SendKeys.SendWait( "n" );

谢谢

最佳答案

您不能提供您没有的东西 - SetForegroundWindow() 仅在您的应用程序当前具有焦点时才有效。

现代 Windows 版本防止应用程序窃取焦点,因为这在 Windows 9x 时代是一个主要的烦恼。

此外,'Alt+F, x' 仅指在英语 Windows 版本上退出,它不适用于大多数其他语言。避免使用 SendKeys(),它不可能以可靠的方式使用。

关于C# SendKeys.SendWait 到另一个进程的对话框 (notepad.exe),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9314524/

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