Add-Type -AssemblyName PresentationFramework
Add-Type -AssemblyName PresentationCore
Add-Type -AssemblyName WindowsBase

[xml]$xaml = @"
<Window
        xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
        xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
        Title="Name Change" Height="260" Width="800"
        x:Name="Window">

    <Grid>
        <TextBox x:Name="txtUPN" HorizontalAlignment="Left" Height="23" TextWrapping="Wrap" VerticalAlignment="Top" Width="120" Margin="32,155,0,0"/>

    </Grid>
</Window>
"@
$reader = (New-Object System.Xml.XmlNodeReader $xaml)
$window = [Windows.Markup.XamlReader]::Load($reader)

$upn = $Window.FindName('txtUPN')

$upn.Add_KeyDown(
    {if ($_.KeyCode -eq "Enter")
    {$upn.Text | Out-Host}})

# KeyDown event fires, but doesn't capture the Enter key

$window.ShowDialog()

将Powershell与XAML GUI结合使用时,我有3个不同的文本框,我想使用Enter键来触发函数调用,但是遇到的任何事情似乎都没有效果。是否有我看不见的东西,缺少一些组件?似乎什么都看不到Enter键,我什至在KeyPress上尝试了KeyChar。我对窗体窗口事件不感兴趣,我更喜欢文本框事件。似乎迫使您使用Button。谢谢。

最佳答案

keycode属性在WinForms中工作正常,但是在WPF中似乎需要使用密钥

$upn.Add_KeyDown(
{if ($_.Key -eq "Enter")
{$upn.Text | Out-Host}})

关于wpf - 在Powershell中运行的XAML文本框中捕获Enter键,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/54623389/

10-10 18:35