我找到了以下代码来为powershell创建简单的输入框:
[void][Reflection.Assembly]::LoadWithPartialName('Microsoft.VisualBasic')
$title = 'Demographics'
$msg = 'Enter your demographics:'
$text = [Microsoft.VisualBasic.Interaction]::InputBox($msg, $title)
有人知道如何添加更多的输入字段吗?
1条答案
按热度按时间xesrikrc1#
WPF、XAML、.NET和ShowUI都是可用的选项。
https://learn-powershell.net/2012/09/13/powershell-and-wpf-introduction-and-building-your-first-window/
http://www.show-ui.com/
此外,您还可以使用visual studio community edition(免费)或付费工具,如https://poshgui.com/
或者,下面是使用
Show-Command
cmdlet的示例