标签:吐槽 开头 错误 ext blog 引入 find 代码 eve
private void timer1_Tick(object sender, EventArgs e) { int iHandle = FindWindow(null, "安全警报"); if (iHandle != 0) { SetForegroundWindow(iHandle); System.Windows.Forms.SendKeys.SendWait("Y%"); } iHandle = FindWindow(null, "脚本错误"); if (iHandle != 0) { SetForegroundWindow(iHandle); System.Windows.Forms.SendKeys.SendWait("Y%"); } iHandle = FindWindow(null, "Web 浏览器"); if (iHandle != 0) { SetForegroundWindow(iHandle); System.Windows.Forms.SendKeys.SendWait("{ENTER}"); } }
先贴代码。
吐槽某大公司的大系统。登个陆要跳单点,单点要要过五关斩六将。
另外,前面还需要引入dll,开头部分引入
[DllImport("user32.dll")] public extern static int FindWindow(string lpclassname, string lpwindowname); [DllImport("user32.dll")] public extern static void SetForegroundWindow(int handle);
标签:吐槽 开头 错误 ext blog 引入 find 代码 eve
原文地址:http://www.cnblogs.com/xiaee/p/7135981.html