如何确定 C# 中当前关注的进程名称和版本

发布于 2024-07-05 16:58:57 字数 82 浏览 12 评论 0原文

例如,如果我正在使用 Visual Studio 2008,我需要值 devenv 和 2008 或 9。

版本号非常重要......

For example if I'm working on Visual Studio 2008, I want the values devenv and 2008 or 9.

The version number is very important...

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

ζ澈沫 2024-07-12 16:58:58

项目演示了您需要的两个函数:EnumWindowsGetWindowtext

This project demonstrates the two functions you need: EnumWindows and GetWindowtext

心清如水 2024-07-12 16:58:58

你能澄清你的问题吗? 您的意思是您想要一个程序运行,它会告诉您有关活动窗口中的程序的数据吗? 或者您希望您的程序报告其自己的版本?

您正在寻找以任何方式获取信息的 系统.Reflection.Assembly。 (请参阅链接中的代码示例。)

如何从外部程序获取程序集? 那个我不太确定...

Can you clarify your question? Do you mean you want a program running, which will tell you data about the program in the active window? Or that you want your program to report out its own version?

What you're looking for to get the information either way is System.Reflection.Assembly. (See code examples in the link.)

How to get the assembly from an external program? That one I'm not sure about...

唔猫 2024-07-12 16:58:57

这将是 PInvoke 城市...

您需要 PInvoke User32.dll

Win32::GetForegroundWindow() 中的以下 API,以返回当前活动窗口的 HWND。

/// <summary>
/// The GetForegroundWindow function returns a handle to the foreground window.
/// </summary>
[DllImport("user32.dll")]
static extern IntPtr GetForegroundWindow();

Win32::GetWindowThreadProcessId(HWND,LPDWORD) 返回给定 HWND 的 PID

[DllImport("user32.dll", SetLastError=true)]
static extern uint GetWindowThreadProcessId(IntPtr hWnd, out uint lpdwProcessId);

在 C#

Process.GetProcessByID() 中使用 PID 创建 C# 进程对象

processInstance.MainModule 返回附加了 FileVersionInfo 的 ProcessModule。

This is going to be PInvoke city...

You'll need to PInvoke the following API's in User32.dll

Win32::GetForegroundWindow() in returns the HWND of the currently active window.

/// <summary>
/// The GetForegroundWindow function returns a handle to the foreground window.
/// </summary>
[DllImport("user32.dll")]
static extern IntPtr GetForegroundWindow();

Win32::GetWindowThreadProcessId(HWND,LPDWORD) returns the PID of a given HWND

[DllImport("user32.dll", SetLastError=true)]
static extern uint GetWindowThreadProcessId(IntPtr hWnd, out uint lpdwProcessId);

In C#

Process.GetProcessByID() takes the PID to create a C# process object

processInstance.MainModule returns a ProcessModule with FileVersionInfo attached.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文