如何在System.Windows.Forms.TextBox powershell中获得焦点?

问题描述 投票:0回答:1

我使用PowerShell做了一个窗口表单。

我有一个文本框,我想重点关注。

如何为TextBox添加焦点并使其更易于使用?

我的代码

...

    # TextBox
    $textbox = New-Object System.Windows.Forms.TextBox
    $textbox.AutoSize = $true
    $textbox.Location = New-Object System.Drawing.Point(150,125)
    $textbox.Name = 'textbox_sw'
    $textbox.Size = New-Object System.Drawing.Size(220,20)
    $textbox.Text = "Nom de la clef USB ici"
    #$textbox.Focused

...
powershell textbox
1个回答
0
投票

最后我发现它来自这个帖子How to set keyboard focus to a TextBox in Powershell所以它给了

$form.Add_Shown({$form.Activate(); $textbox.Focus()}).

现在我专注于我的文本框

© www.soinside.com 2019 - 2024. All rights reserved.