从c#处理本机外部进程窗口事件

时间:2013-10-09 19:11:32

标签: c# windows winapi events process

我正在C#应用程序中启动一个进程(即gnuplot.exe)。 该过程可以打开一些窗口,对于该过程,我想拦截以下事件:

  • 打开窗口
  • 关闭窗口
  • 专注窗口

基本思想是处理用户是否关闭某些窗口或更改活动窗口等等,仅参考已启动的进程。换句话说,我不想处理其他焦点更改或关闭不被gnuplot窗口抛出的窗口事件。

你能帮帮我吗?是否有可能避免民意调查?我应该参考哪个api?你可以粘贴/链接一个mwe或一些示例代码吗? 提前谢谢

更新

正如埃里克·布朗所说,我尝试过这种方式,但仍然行不通。你能帮我发现我错在哪里吗?

    using System;
    using System.Collections.Generic;
    using System.Linq;
    using System.Text;
    using System;
    using System.Windows;
    using System.Windows.Forms;
    using System.Runtime.InteropServices;
    using System.Diagnostics;
    using System.Windows.Automation;

    namespace WinApiEvents
    {
        class Program
        {
            public static void Main()
            {
                Process gp = new Process();
                gp.StartInfo.FileName = @"C:\Software\gp463-win32\gnuplot\bin\gnuplot.exe";
                gp.StartInfo.UseShellExecute = false;
                gp.StartInfo.RedirectStandardInput = true;
                gp.StartInfo.CreateNoWindow = true;
                gp.StartInfo.WindowStyle = ProcessWindowStyle.Hidden;
                gp.Start();

                AutomationElement targetElement = 
                    AutomationElement.FromHandle(gp.Handle);

                StructureChangedEventHandler structChangedHandler =
                    new StructureChangedEventHandler(OnGnuplotWindowStructureChanged);
                Automation.AddStructureChangedEventHandler(
                    targetElement, TreeScope.Element, structChangedHandler);

                AutomationEventHandler focusHandler =
                    new AutomationEventHandler(OnGnuplotWindowFocusGained);
                Automation.AddAutomationEventHandler(
                    AutomationElement.AutomationFocusChangedEvent, targetElement, TreeScope.Element, focusHandler);

                StringBuilder sb = new StringBuilder();
                sb.AppendLine("set term wxt 1 enhanced");
                sb.AppendLine("plot sin(x)");
                gp.StandardInput.WriteLine(sb.ToString());
                gp.StandardInput.Flush();
                                    sb.Clear();


                sb.AppendLine("set term wxt 2 enhanced");
                sb.AppendLine("plot cos(x)");
                gp.StandardInput.WriteLine(sb.ToString());
                gp.StandardInput.Flush();
                                    sb.Clear();


                sb.AppendLine("set term wxt 3 enhanced");
                sb.AppendLine("plot atan(x)");
                gp.StandardInput.WriteLine(sb.ToString());
                gp.StandardInput.Flush();
                                    sb.Clear();

                MessageBox.Show("Click to exit.");

            }

            private static void OnGnuplotWindowStructureChanged(object src, StructureChangedEventArgs e)
            {
                Console.WriteLine("structure changed window, id=" + e.EventId.ProgrammaticName);
            }

            private static void OnGnuplotWindowFocusGained(object src, AutomationEventArgs e)
            {
                Console.WriteLine("focused window, id=" + e.EventId.ProgrammaticName);
            }

        }
    }

提前谢谢

1 个答案:

答案 0 :(得分:0)

我会使用UI Automation框架。

我假设您已经(或可以获得)gnuplot窗口句柄。完成后,您可以获取UI Automation element for that window,并设置FocusChanged事件处理程序和StructureChanged处理程序,以检测子窗口打开和放大。收盘。 WindowClosed事件将告诉您gnuplot窗口本身是否关闭。 (您也可以在子窗口中使用它,但是您仍然需要侦听StructureChanged事件以检测子窗口打开事件。)