我试图了解为什么此代码将在 Powershell ISE 中运行,而不是在 Powershell 控制台中运行
function close-window (){
# close
$hash.window.Dispatcher.Invoke("Normal",[action]{ $hash.window.close() })
# clean up
$powershell.EndInvoke($handle) | Out-Null
$runspace.Close() | Out-Null
$powershell.Dispose() | Out-Null
}
$hash = [hashtable]::Synchronized(@{})
$runspace = [runspacefactory]::CreateRunspace()
$runspace.ApartmentState = "STA"
$Runspace.ThreadOptions = "ReuseThread"
$runspace.Open()
$runspace.SessionStateProxy.SetVariable("hash",$hash)
$Powershell = [PowerShell]::Create()
$powershell.AddScript({
$xaml = [xml]@"
<Window
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
x:Name="Window" Title="Splash Screen" WindowStyle="None" WindowStartupLocation="CenterScreen"
Width="499" Height="272" BorderBrush="#FF2AA0F1" ShowInTaskbar = "False" AllowsTransparency="True"
ResizeMode = "NoResize" BorderThickness="1" >
</Window>
"@
$reader = New-Object System.Xml.XmlNodeReader $xaml
$hash.window = [Windows.Markup.XamlReader]::Load($reader)
$hash.window.Add_MouseRightButtonUp({ $hash.window.close() })
$hash.window.ShowDialog()
})
$Powershell.Runspace = $runspace
$handle = $Powershell.BeginInvoke()
从 ISE 运行它,您将获得 XAML 窗口出现的预期结果。保存文件并从控制台运行它,它会静默失败 将其复制并粘贴到控制台中,它会静默失败。
它包含一个带有同步哈希表的运行空间 因为它是 XAML,所以我将运行空间作为单线程单元启动。从控制台运行时尝试过 MTA 和 STA
目的是将这段代码用作启动屏幕的一部分。