是否可以获取当前活动应用程序的名称
用户可以通过 Alt+Tab 或单击任务栏中的图标来切换活动应用程序。是否可以获得当前活动应用程序的名称(或其他独特特征)?
我想编写一个程序来收集应用程序使用情况的统计数据。
User can switch active application by Alt+Tab or by clicking on their icons in TaskBar. Is it possible to get the name (or other unique characteristic) of current active application?
I want to write a program which collects statistic of the applications usage.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
Windows API 有一个名为 GetForegroundWindow() 的函数。您将需要使用 P/Invoke 来调用 Win32 API。 P/Invoke wiki 为 C# 用户提供了更多信息。
请参阅此page 获取当前应用程序的标题(名称)的示例。
The Windows API has a function called GetForegroundWindow(). You will need to use P/Invoke to call into the Win32 API. The P/Invoke wiki has more info for C# users.
See this page for an example which gets the caption (name) of the current application.
您正在寻找 API 函数 GetForegroundWindow 和 GetWindowText。还有 GetWindowThreadProcessId 函数,它将从 hWnd 获取进程 id,然后您可以使用常规 .NET 类来处理进程...
You're looking for the API functions GetForegroundWindow and GetWindowText. There is also the GetWindowThreadProcessId function which will get the process id from the hWnd and then you can use the regular .NET classes for dealing with processes...
获取 C# 应用程序的名称(多个选项):(
第一个要求您添加引用
System.Windows.Forms
)To get the name of your c# application (several options):
(first one requires you to add reference
System.Windows.Forms
)