AutomationFocusChangedEventHandler:PowerShell中未触发事件剂量

问题描述

我正在准备使用Powershell脚本检测焦点变化,而我的代码是

start calc

Write-Host "Loading MS UIA assemblies"
[void][System.Reflection.Assembly]::LoadWithPartialName("UIAutomationClient")
[void][System.Reflection.Assembly]::LoadWithPartialName("UIAutomationTypes")
[void][System.Reflection.Assembly]::LoadWithPartialName("UIAutomationProvider")
[void][System.Reflection.Assembly]::LoadWithPartialName("UIAutomationClientsideProviders")



try
{
    # WORKAROUND: There is a weird bug: first call fails ...
    [Windows.Automation.ClientSettings]::RegisterClientSideProviderAssembly([UIAutomationClientsideProviders.UIAutomationClientSideProviders].Assembly.GetName())
}
catch {}
# ... second call succeeds:
[Windows.Automation.ClientSettings]::RegisterClientSideProviderAssembly([UIAutomationClientsideProviders.UIAutomationClientSideProviders].Assembly.GetName())


$focusedElem = [Windows.Automation.AutomationElement]::FocusedElement #this one work fine


Write-Host "name: " $focusedElem.Current.Name
Write-Host "ControlType: " $focusedElem.Current.ControlType
Write-Host "ProcessId: " $focusedElem.Current.ProcessId

$onFocusChange = { # this dose not fired !!!!
    param([Sytem.Object]$src,[Windows.Automation.AutomationFocusChangedEventArgs]$e)
    start notepad
}

$focusChangeHandler = [Windows.Automation.AutomationFocusChangedEventHandler]($onFocusChange)

[Windows.Automation.Automation]::AddAutomationFocusChangedEventHandler($focusChangeHandler)

Start-Sleep -Seconds 5 #durring this sleep i change the focused window,but nothing happen :(

[Windows.Automation.Automation]:: RemoveAutomationFocusChangedEventHandler($focusChangeHandler)

您是否知道此脚本为什么不起作用,或者是否需要监视Powershell中没有外部工具的焦点更改?

解决方法

暂无找到可以解决该程序问题的有效方法,小编努力寻找整理中!

如果你已经找到好的解决方法,欢迎将解决方案带上本链接一起发送给小编。

小编邮箱:dio#foxmail.com (将#修改为@)

相关问答

错误1:Request method ‘DELETE‘ not supported 错误还原:...
错误1:启动docker镜像时报错:Error response from daemon:...
错误1:private field ‘xxx‘ is never assigned 按Alt...
报错如下,通过源不能下载,最后警告pip需升级版本 Requirem...