Powershell无法找到类型[System.Windows.Forms.KeyEventHandler]

时间:2015-01-06 03:46:29

标签: powershell user-interface .net-assembly

这可能是一个非常简单的问题,但我完全迷失了,寻找答案并没有帮助。

我有一些powershell代码来显示带有TextBoxes的简单GUI。某些文本框允许用户按Enter键以运行Button_Click代码。当我尝试运行PS1脚本时,出现以下错误:

Unable to find type [System.Windows.Forms.KeyEventHandler].
Make sure that the assembly that contains this type is loaded.At C:\Scripts\GUI-Testing.ps1:161 char:1

$TestVar=[System.Windows.Forms.KeyEventHandler]
CategoryInfo          : InvalidOperation: (System.Windows.Forms.KeyEventHandler:TypeName)
FullyQualifiedErrorId : TypeNotFound

奇怪的是,如果我关闭GUI然后重新运行脚本,我就不会收到Unable to find type错误,按Enter键可以正常工作。

以为我有一个答案,我尝试使用[void][reflection.assembly]::Load('System.Windows.Forms.KeyEventHandler')来表示此错误Exception calling "Load" with "1" argument(s): "Could not load file or assembly 'System.Windows.Forms.KeyEventHandler' or one of its dependencies. [FileNotFoundException]

1 个答案:

答案 0 :(得分:15)

确保在脚本顶部加载以下程序集:

[void] [System.Reflection.Assembly]::LoadWithPartialName("System.Drawing") 
[void] [System.Reflection.Assembly]::LoadWithPartialName("System.Windows.Forms") 

如果它仍然不起作用,您可以执行以下操作:

$objForm.KeyPreview = $True
$objForm.Add_KeyDown({
    if ($_.KeyCode -eq "Enter") 
    {    
        #Write Code Here
    }
})