我想要一个给我一个程序名称的函数(比如msPaint或notepad)当我使用记事本时,这个函数返回“Notepad”,当我使用msPaint时,这个函数返回“msPaint”。
请帮帮我......
答案 0 :(得分:3)
使用Process.GetProcesses();
方法,您可以获取所有正在运行的应用程序,如果您想要当前活动窗口,请使用GetForegroundWindow()
和GetWindowText()
。
答案 1 :(得分:2)
您可以使用Process类。它有一个Modules属性,列出了所有已加载的模块。
列出控制台的所有进程和所有模块:
Process[] processes = Process.GetProcesses();
foreach(Process process in processes) {
Console.WriteLine("PID: " + process.Id);
Console.WriteLine("Name: " + process.Name);
Console.WriteLine("Modules:");
foreach(ProcessModule module in process.Modules) {
Console.WriteLine(module.FileName);
}
或者这样做,
[DllImport("user32.dll")]
private static extern IntPtr GetForegroundWindow();
[DllImport("user32.dll")]
private static extern int GetWindowText(IntPtr hWnd, StringBuilder text, int count);
public static void Main()
{
int chars = 256;
StringBuilder buff = new StringBuilder(chars);
while (true)
{
// Obtain the handle of the active window.
IntPtr handle = GetForegroundWindow();
// Update the controls.
if (GetWindowModuleFileName(handle, buff, chars) > 0)
{
Console.WriteLine(buff.ToString());
Console.WriteLine(handle.ToString());
}
Thread.Sleep(1000);
}
}
答案 2 :(得分:1)
来自:How to get a process window class name from c#?
int pidToSearch = 316;
//Init a condition indicating that you want to search by process id.
var condition = new PropertyCondition(AutomationElementIdentifiers.ProcessIdProperty,
pidToSearch);
//Find the automation element matching the criteria
AutomationElement element = AutomationElement.RootElement.FindFirst(
TreeScope.Children, condition);
//get the classname
var className = element.Current.ClassName;
答案 3 :(得分:0)
我不确定你是如何称呼这些程序的。如果您通过Process运行这些程序,则可以通过ProcessName。
示例:
Process tp = Process.Start(@"notepad.exe", "temp");
string s = tp.ProcessName;