从pid获取窗口标题

时间:2012-04-03 06:37:20

标签: c# window autoit pid

我正在寻找一种从流程ID获取窗口标题的方法。

我想构建函数获取特定窗口的pid并返回其窗口标题。

我尝试使用AutoIt但它不起作用。

任何想法?

2 个答案:

答案 0 :(得分:8)

这应该很简单:

Process.GetProcessById(processId).MainWindowTitle;

如果您喜欢它作为您要求的功能:

public string GetWindowTitle(int processId){
  return Process.GetProcessById(processId).MainWindowTitle;
}

答案 1 :(得分:4)

之前在AutoIt中已经多次执行此操作,可以选择返回属于该进程的所有窗口,而不仅仅是主窗口。

This post提供标准解决方案。如果腐烂蔓延:

;0 will return 1 base array; leaving it 1 will return the first visible window it finds
Func _WinGetByPID($iPID, $nArray = 1)
    If IsString($iPID) Then $iPID = ProcessExists($iPID)
    Local $aWList = WinList(), $sHold

    For $iCC = 1 To $aWList[0][0]
        If WinGetProcess($aWList[$iCC][1]) = $iPID And _
            BitAND(WinGetState($aWList[$iCC][1]), 2) = 0 Then
            If $nArray Then Return $aWList[$iCC][0]
            $sHold &= $aWList[$iCC][0] & Chr(1)
        EndIf
    Next

    If $sHold Then Return StringSplit(StringTrimRight($sHold, 1), Chr(1))
    Return SetError(1, 0, 0)
EndFunc