|
楼主 |
发表于 2020-1-4 18:18:01
|
显示全部楼层
IntPtr hWnd = GetExeHandel("StartOldInstance");
// MessageBox.Show(""+hWnd);
if (hWnd != IntPtr.Zero)
{
ShowWindow(hWnd, 1);
SendKeys.Send("{Enter}");
Clipboard.SetDataObject("123456789");
SetForegroundWindow(hWnd);
}
如果要在“Clipboard.SetDataObject("123456789");
”一起实现粘贴应该如何实现,请大虾们帮帮忙啊,问了好几个贴都没人回答! |
|