是否可以在 C# 中编写一个服务应用程序
- 检查当前活动窗口是否为网络浏览器
- 如果当前浏览的网站是某个网站
- 最后检查光标是否在特定元素中
1.检查当前活动窗口是否为网络浏览器
Process[] ieProcs = Process.GetProcessesByName("IEXPLORE");
System.Diagnostics.Process[] ieProcs = Process.GetProcessesByName("IEXPLORE");
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 );
}