gpt4 book ai didi

c# - 向窗口发送 CTRL-S 消息

转载 作者:太空狗 更新时间:2023-10-30 00:35:17 25 4
gpt4 key购买 nike

我想使用 C# 代码保存一个 TextPad 窗口;我可以找到窗口的句柄,但不确定如何将 CTRL - S 发送到该窗口。我想使用 P/Invoke API 来实现这一点。此外,该 TextPad 窗口将处于非事件状态,因为那时我的应用程序将处于事件状态。

[DllImport("user32.dll")]
private static extern int SendMessage(IntPtr hwnd, int msg, int wParam, int lParam);

Send Ctrl+Up to a window

我看了这个与我的问题非常相似的讨论。我从逻辑上理解我必须像下面那样发送 4 条消息

  • KeyDown CTRL 键
  • KeyDown S 键
  • KeyUp S 键
  • KeyUp CTRL 键

我不确定如何将正确的参数发送到 SendMessage。要关闭我使用的窗口

SendMessage(hWnd, 0x0010, 0, 0);

我从 MSDN 库中得到了这个。

你能不能给我一些链接,告诉我键盘上键的十六进制并解释最后两个参数代表什么?

更新 - 1
使用 spy++ 我发现这些事件是通过在记事本窗口中按 CTRL-S 生成的

1. WM_KEYDOWN nVirtKey:VK_Control, 2. WM_KEYDOWN nVirtKey:'S' .. some other messates ..3. WM_KEYUP nVirtKey:VK_Control. 4. WM_KEYUP nVirtKey:'S'. 

UPDATE - 2


private IntPtr startnotepad() {
ProcessStartInfo psi = new ProcessStartInfo();
psi.FileName = @"notepad.exe";
String fileName = baseDirectory + textbox1.Text;
psi.Arguments = @"""" + fileName + @"""";
psi.WindowStyle = ProcessWindowStyle.Minimized;
Process p = Process.Start(psi);
return p.MainWindowHandle;
}

private void SaveNotepad(IntPtr handle)
{
IntPtr handle = GetWindow(handle, 5); // get the keyboard focus handle
// verified the handle with Spy ++.
SendMessage(handle, 0x0100, 0x11, 0); // keydown ctrl
SendMessage(handle, 0x0100, 0x53, 0); // keydown S
//SendMessage(handle, 0x0101, 0x11, 0); --- I tried keeping "Keyup Ctrl" here as well.
SendMessage(handle, 0x0101, 0x53, 0); // keyup s
SendMessage(handle, 0x0101, 0x11, 0); // keyup ctrl
}

即使我能够看到 WM_KEYDOWN - CTRL .. WM_KEYDOWN - 'S' .. KEYUP 'S' 和 KEYUP CTRL 被发送到 spy++ 中的右侧窗口,此代码也不起作用(保留其中的一部分)。任何人都可以评论这段代码有什么问题吗?或者如果我正在做一些非常愚蠢的事情时有任何建议。

更新 3

我应该使用 PostMessage 而不是 @Hans 在他的评论中建议的 SendMessage。


[DllImport("user32.dll")]
public static extern IntPtr PostMessage(IntPtr hWnd, uint Msg, IntPtr wParam, IntPtr lParam);

private void Save(IntPtr mainWindowHandle)
{
IntPtr handle = GetWindow(mainWindowHandle, 5); // getChild window
IntPtr CTRL_KEY = new IntPtr(0x11);
uint KEY_DOWN = 0x0100;
uint KEY_UP = 0x0101;
IntPtr S_KEY = new IntPtr(0x53);

//SetForegroundWindow(p.MainWindowHandle);
PostMessage(handle, KEY_DOWN, CTRL_KEY, IntPtr.Zero);
PostMessage(handle, KEY_DOWN, S_KEY, IntPtr.Zero);
PostMessage(handle, KEY_UP, S_KEY, IntPtr.Zero);
PostMessage(handle, KEY_UP, CTRL_KEY, IntPtr.Zero);
}

上面的代码代替 CTRL+S 将 CTRL 和 S 发送到记事本窗口。因此,我可以看到记事本上出现了两个“S”。查看我们按 CTRL+S 时生成的真实消息,我发现我的 Postmessage 的最后一个参数是错误的。它应该是这样的(对于 KEY UP CTRL 键“C01F0001”)

你能告诉我如何将这个十六进制作为 postmessage 的最后一个参数传递吗?


// does not work
PostMessage(handle, KEY_UP, CTRL_KEY, new IntPtr(0xC01F0001);

更新 4:我认为我们不能将“热键”消息发送到最小化的窗口。使用发布消息。
下面的代码适用于 SendInput: 但它会弹出窗口,这会破坏目的。不管怎样,只是想更新这个线程。


private void Save_Notepad(IntPtr mainWindowHandle) {
//SetActiveWindow(mainWindowHandle);
//SetFocus(GetWindow(mainWindowHandle, 5));
ShowWindow(mainWindowHandle, 1); // show window
SetForegroundWindow(mainWindowHandle);
//SetActiveWindow(mainWindowHandle);
//SetFocus(GetWindow(mainWindowHandle, 5));
//IntPtr returnvalue = SetFocus(mainWindowHandle);
uint intReturn;
INPUT structInput;
structInput = new INPUT();
structInput.type = 1;// keyboard input
// key down
structInput.ki.wScan = 0x1D;
structInput.ki.time = 0;
structInput.ki.dwFlags = 0;
// key down Ctrl
structInput.ki.wVk = 0x11; //0x1D; //
intReturn = SendInput(1, ref structInput, Marshal.SizeOf(new INPUT()));
// key down S
structInput.ki.wScan = 0x1F;
structInput.ki.wVk = 0x53; //0x41;//0x53; //0x1F;//
intReturn = SendInput(1, ref structInput, Marshal.SizeOf(new INPUT()));
// key up
structInput.ki.dwFlags = 0x0002; // key up
// key up S
intReturn = SendInput(1, ref structInput, Marshal.SizeOf(typeof(INPUT)));
// key up CTRL
structInput.ki.wVk = 0x11; //0x1D; //
intReturn = SendInput(1, ref structInput, Marshal.SizeOf(new INPUT()));
//ShowWindow(mainWindowHandle, 2); // minimize it again
}

按 CTRL + S 后我可以最小化窗口,但它会创建一个闪光灯。谁能建议我是否可以在没有“FLASH”的情况下实现此功能(至少)?
更新 5:使用 WM_SYSCOMMAND


IntPtr handle = GetWindow(mainWindowHandle, 5);
// send Alt F message to Notepad.
// http://msdn.microsoft.com/en-us/library/ms646360(v=VS.85).aspx
// I can see this is working.
PostMessage(handle, 0x0112, 0xF100, 'f'); // send WM_SYSCOMMAND
// how to send s on this window ??
// I have tried things which I have learned so far.

我只需要发送 S 条消息到文件菜单,该菜单将作为 WM_SYSCOMMAND 的结果弹出。任何人都可以指出如何执行此操作的文档吗?


PostMessage(handle, KEY_DOWN, S_KEY, 0x1F0001); // POST does not work
// tried with mainwindowhandle as well
PostMessage(handle, 0x111, 'S', 0); // WM_COMMAND does not work
PostMessage(handle, 0x0112, 0xF100, 's'); // WM_SYSCOMMAND does not work (and does not make sence either)

最终更新

我无法将 ^S 消息发送到最小化的窗口。当焦点在编辑器上时,我每 2-3 秒使用一次 sendkeys(^s)。

-- 卡勒普尔

最佳答案

您不能使用 SendMessage(或 PostMessage,正确的)来模拟修饰键的状态,例如 CTRL。您必须使用 SendInput()。

像 Ctrl+S 这样的击键通常不会被翻译成 WM_COMMAND 消息。使用 Spy++ 工具查看当您手动键入 Ctrl+S 时会发生什么。如果您看到 WM_COMMAND,那么您就成功了,您可以使用 SendMessage() 来发送该消息。这当然只适用于特定进程。

关于c# - 向窗口发送 CTRL-S 消息,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5144877/

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