显示正在运行的应用程序(alt-tab 程序列表)
在这里找到解决方案:http://blogs.msdn。 com/b/oldnewthing/archive/2007/10/08/5351207.aspx
我正在尝试查看正在运行的应用程序列表,我在几个论坛都有这个解决方案:
Process[] processes = Process.GetProcesses();
foreach (var proc in processes)
{
if (!string.IsNullOrEmpty(proc.MainWindowTitle))
Console.WriteLine(proc.MainWindowTitle);
}
除非这并没有给我提供与按 alt-tab 时相同的列表。例如:firefox、explorer 和 iexplore 都返回空/null MainWindowTitle。还有其他方法可以访问此列表吗?也许通过 windowsAPI?
我正在使用 Windows 7 32 位
提前谢谢您。
Found the solution here: http://blogs.msdn.com/b/oldnewthing/archive/2007/10/08/5351207.aspx
I'm trying to go a list of running applications, i found on several forums this solution:
Process[] processes = Process.GetProcesses();
foreach (var proc in processes)
{
if (!string.IsNullOrEmpty(proc.MainWindowTitle))
Console.WriteLine(proc.MainWindowTitle);
}
exept this is not giving me the same list as when you press alt-tab. For example: firefox, explorer, and iexplore all return an empty/null MainWindowTitle. Is there another way to access this list? Maybe thru a windowsAPI?
I'm am using Windows 7 32bit
Thank you in advanced.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
Windows 上没有隐藏进程。仅显示您没有(安全)权限的进程。
看一下下面的内容:
使用 C# 检索完整的进程列表
There are no hidden processes on Windows. Only processes you do not have (security) rights to see.
have a look at the below:
Retrieve a complete processes list using C#
试试这个(取自此处),但我不确定它是否能解决您的问题:
Try this (taken from here), but I'm not sure it solves your problem: