高分求模拟按键
想做个模拟按键的程序:程序开始时候按一下"主键盘的数字1"然后5秒后再按,反复进行,对当前程序起作用(比如记事本里,每隔5秒出现个1)
要全程序代码,在线给分!!!!!!!! --------------------编程问答-------------------- 首先你要找到当前程序
然后SendMessage就可以了
主要就是用API --------------------编程问答-------------------- 主要用到
FindWindowEx
SendMessage
[DllImport("User32.DLL")]
public static extern int SendMessage(IntPtr hWnd,
uint Msg, int wParam, string lParam);
[DllImport("User32.DLL")]
public static extern IntPtr FindWindowEx(IntPtr hwndParent,
IntPtr hwndChildAfter, string lpszClass, string lpszWindow);
时间你可以用Timer或者其他的东西~~~~~ --------------------编程问答-------------------- 能写详细点么?我可是初级C#才学1个月啊 --------------------编程问答-------------------- 还是不懂,见谅了
补充:.NET技术 , C#