gpt4 book ai didi

winforms - powershell 中的 System.Windows.Forms.ListView 隐藏输出

转载 作者:行者123 更新时间:2023-12-02 19:08:32 26 4
gpt4 key购买 nike

使用以下代码

$listView = New-Object System.Windows.Forms.ListView
$listView.View = 'Details'
$listView.Width = 300
$listView.Height = 300
$listView.Columns.Add('User Name')

显示索引:0指数:0图像索引:-1图片列表:图像键: ListView :System.Windows.Forms.ListView,项目.计数:0姓名 :文本:用户名文本对齐:左对齐标签 :宽度:60地点 :容器:

它在 powershell 控制台中输出以上内容。我怎样才能隐藏这个输出。

它干扰我在 -noconsole 模式下使用此脚本进行转换 https://gallery.technet.microsoft.com/scriptcenter/PS2EXE-GUI-Convert-e7cb69d5

最佳答案

要抑制输出,您可以使用 out-null:

$listView.Columns.Add('User Name')|out-null

此外,如果将其分配给变量,它会抑制输出:

$item = $listView.Columns.Add('User Name')

关于winforms - powershell 中的 System.Windows.Forms.ListView 隐藏输出,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/51128482/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com