我正在寻找一种从进程id中获取窗口标题的方法。
我想建立函数获取特定窗口的pid并返回其窗口标题。
我试着用AutoIt,但没用。
有什么想法吗?
这应该很简单:
Process.GetProcessById(processId).MainWindowTitle;
如果你喜欢它作为你要求的功能:
public string GetWindowTitle(int processId){
return Process.GetProcessById(processId).MainWindowTitle;
}
这在AutoIt中已经做过很多次了,可以选择返回属于进程的所有窗口,而不仅仅是主窗口。
这篇文章提供了标准的解决方案。万一腐烂蔓延:
;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