怎么获得当前激活程序的名字呀比如我现在打开outlook,QQ,IE,什么的 当我激活IE窗口的时候 得到IE 知道我当前激活的窗口是IE呢
[DllImport("user32.dll", EntryPoint = "GetForegroundWindow")]
public static extern IntPtr GetForegroundWindow();
GetForegroundWindow() //可以获取当前激活窗体的句柄
[DllImport("user32.dll", EntryPoint = "GetWindowText")]
public static extern int GetWindowText(IntPtr hwnd, StringBuilder lpString, int cch);
GetWindowText//可以根据窗体的句柄获取窗体标题。
GetForegroundWindow