0

是否可以在 C# 中编写一个服务应用程序

  1. 检查当前活动窗口是否为网络浏览器
  2. 如果当前浏览的网站是某个网站
  3. 最后检查光标是否在特定元素中
4

2 回答 2

1

1.检查当前活动窗口是否为网络浏览器

Process[] ieProcs = Process.GetProcessesByName("IEXPLORE"); 
System.Diagnostics.Process[] ieProcs = Process.GetProcessesByName("IEXPLORE");
于 2012-08-18T11:09:46.573 回答
1
using System.IO;

...

SHDocVw.ShellWindows shellWindows = new SHDocVw.ShellWindowsClass();

string filename;

foreach ( SHDocVw.InternetExplorer ie in shellWindows )
{
    filename = Path.GetFileNameWithoutExtension( ie.FullName ).ToLower();

    if ( filename.Equals( "iexplore" ) )
        Console.WriteLine( "Web Site   : {0}", ie.LocationURL );

    if ( filename.Equals( "explorer" ) )
        Console.WriteLine( "Hard Drive : {0}", ie.LocationURL );
}
于 2012-08-18T11:12:29.350 回答